mirror of
https://github.com/rustdesk/rustdesk
synced 2026-05-24 01:18:21 +00:00
fix abnormal backspace issue reported from google play
This commit is contained in:
parent
ce3e9ce8d6
commit
b2c8c247b2
1 changed files with 3 additions and 1 deletions
|
|
@ -158,7 +158,9 @@ class _RemotePageState extends State<RemotePage> {
|
|||
// 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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue