mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-03-23 21:21:05 +03:00
fix, one tap results double tap event
Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
@@ -421,9 +421,8 @@ class _RemotePageState extends State<RemotePage> {
|
||||
);
|
||||
}
|
||||
|
||||
// to-do: Check if peer is ios.
|
||||
bool get isPeerMobile => kPeerPlatformAndroid == gFFI.ffiModel.pi.platform;
|
||||
bool get showCursorPaint => !isPeerMobile && !gFFI.canvasModel.cursorEmbedded;
|
||||
bool get showCursorPaint =>
|
||||
!gFFI.ffiModel.isPeerAndroid && !gFFI.canvasModel.cursorEmbedded;
|
||||
|
||||
Widget getBodyForMobile() {
|
||||
final keyboardIsVisible = keyboardVisibilityController.isVisible;
|
||||
|
||||
Reference in New Issue
Block a user