From e1f2cd21e743b4d5996b0eb4c1f370642e184650 Mon Sep 17 00:00:00 2001 From: dignow Date: Sun, 10 Sep 2023 15:41:29 +0800 Subject: [PATCH] add comment Signed-off-by: dignow --- flutter/lib/mobile/pages/remote_page.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flutter/lib/mobile/pages/remote_page.dart b/flutter/lib/mobile/pages/remote_page.dart index bd44ae5b5..49601ece3 100644 --- a/flutter/lib/mobile/pages/remote_page.dart +++ b/flutter/lib/mobile/pages/remote_page.dart @@ -320,6 +320,8 @@ class _RemotePageState extends State { return RawPointerMouseRegion( cursor: keyboard ? SystemMouseCursors.none : MouseCursor.defer, inputModel: inputModel, + // Disable RawKeyFocusScope before the connecting is established. + // The "Delete" key on the soft keyboard may be grabbed when inputting the password dialog. child: gFFI.ffiModel.pi.isSet.isTrue ? RawKeyFocusScope( focusNode: _physicalFocusNode,