mirror of
https://github.com/rustdesk/rustdesk
synced 2026-05-22 08:28:23 +00:00
Fix release super key
This commit is contained in:
parent
d3d31ff014
commit
f20587cbc0
1 changed files with 1 additions and 1 deletions
|
|
@ -332,7 +332,7 @@ class _RemotePageState extends State<RemotePage>
|
|||
key == LogicalKeyboardKey.shiftLeft) {
|
||||
_ffi.shift = false;
|
||||
} else if (key == LogicalKeyboardKey.metaLeft ||
|
||||
key == LogicalKeyboardKey.metaRight) {
|
||||
key == LogicalKeyboardKey.metaRight || key == LogicalKeyboardKey.superKey) {
|
||||
_ffi.command = false;
|
||||
}
|
||||
sendRawKey(e);
|
||||
|
|
|
|||
Loading…
Reference in a new issue