mirror of
https://github.com/rustdesk/rustdesk
synced 2026-05-24 01:18:21 +00:00
append return after password paste
This commit is contained in:
parent
0ed605717f
commit
8455c69733
1 changed files with 4 additions and 1 deletions
|
|
@ -804,7 +804,10 @@ void showActions(BuildContext context) async {
|
|||
}
|
||||
}();
|
||||
} else if (value == 'enter_os_password') {
|
||||
if (password != "") FFI.setByName('input_string', password);
|
||||
if (password != "") {
|
||||
FFI.setByName('input_string', password);
|
||||
FFI.inputKey('VK_RETURN');
|
||||
}
|
||||
}
|
||||
}();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue