mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-25 05:09:04 +08:00
commit
227e455609
@ -57,9 +57,9 @@ class _DesktopTabPageState extends State<DesktopTabPage> {
|
|||||||
})
|
})
|
||||||
]),
|
]),
|
||||||
);
|
);
|
||||||
return Obx(() => Platform.isMacOS
|
return Platform.isMacOS
|
||||||
? tabWidget
|
? tabWidget
|
||||||
: DragToResizeArea(
|
: Obx(() => DragToResizeArea(
|
||||||
resizeEdgeSize: fullscreen.value ? 1.0 : 8.0, child: tabWidget));
|
resizeEdgeSize: fullscreen.value ? 1.0 : 8.0, child: tabWidget));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -140,9 +140,9 @@ class _ConnectionTabPageState extends State<ConnectionTabPage> {
|
|||||||
}),
|
}),
|
||||||
)),
|
)),
|
||||||
);
|
);
|
||||||
return Obx(() => Platform.isMacOS
|
return Platform.isMacOS
|
||||||
? tabWidget
|
? tabWidget
|
||||||
: SubWindowDragToResizeArea(
|
: Obx(() => SubWindowDragToResizeArea(
|
||||||
resizeEdgeSize: fullscreen.value ? 1.0 : 8.0,
|
resizeEdgeSize: fullscreen.value ? 1.0 : 8.0,
|
||||||
windowId: windowId(),
|
windowId: windowId(),
|
||||||
child: tabWidget));
|
child: tabWidget));
|
||||||
|
Loading…
Reference in New Issue
Block a user