diff --git a/lib/remote_page.dart b/lib/remote_page.dart index ca728b94b..5fdaac60e 100644 --- a/lib/remote_page.dart +++ b/lib/remote_page.dart @@ -158,7 +158,9 @@ class _RemotePageState extends State { // clipboard oldValue = ''; } - if (newValue.length <= oldValue.length) { + if (newValue.length == oldValue.length) { + // ? + } else if (newValue.length < oldValue.length) { final char = 'VK_BACK'; FFI.inputKey(char); } else {