mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-11 06:51:27 +03:00
fix: win10, border (#10753)
Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
@@ -88,12 +88,14 @@ class _DesktopServerPageState extends State<DesktopServerPage>
|
||||
);
|
||||
return isLinux
|
||||
? buildVirtualWindowFrame(context, body)
|
||||
: Container(
|
||||
decoration: BoxDecoration(
|
||||
border:
|
||||
Border.all(color: MyTheme.color(context).border!)),
|
||||
child: body,
|
||||
);
|
||||
: workaroundWindowBorder(
|
||||
context,
|
||||
Container(
|
||||
decoration: BoxDecoration(
|
||||
border:
|
||||
Border.all(color: MyTheme.color(context).border!)),
|
||||
child: body,
|
||||
));
|
||||
},
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user