mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-13 10:11:30 +03:00
fix abnormal backspace issue reported from google play
This commit is contained in:
@@ -158,7 +158,9 @@ class _RemotePageState extends State<RemotePage> {
|
|||||||
// clipboard
|
// clipboard
|
||||||
oldValue = '';
|
oldValue = '';
|
||||||
}
|
}
|
||||||
if (newValue.length <= oldValue.length) {
|
if (newValue.length == oldValue.length) {
|
||||||
|
// ?
|
||||||
|
} else if (newValue.length < oldValue.length) {
|
||||||
final char = 'VK_BACK';
|
final char = 'VK_BACK';
|
||||||
FFI.inputKey(char);
|
FFI.inputKey(char);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user