mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-24 20:59:37 +08:00
do not show 'zoom cursor' if peer side is android
Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
parent
6cf81c811f
commit
dc40800210
@ -1457,6 +1457,9 @@ class _DisplayMenuState extends State<_DisplayMenu> {
|
||||
}
|
||||
|
||||
zoomCursor() {
|
||||
if (widget.ffi.ffiModel.pi.platform == kPeerPlatformAndroid) {
|
||||
return Offstage();
|
||||
}
|
||||
final visible = widget.state.viewStyle.value != kRemoteViewStyleOriginal;
|
||||
if (!visible) return Offstage();
|
||||
final option = 'zoom-cursor';
|
||||
|
Loading…
Reference in New Issue
Block a user