mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
Ticket 254: Put in fix for chrome bug 108404. Automatically release key if a keydown is recieved while meta is held down.
This commit is contained in:
@@ -479,6 +479,11 @@ Guacamole.Keyboard = function(element) {
|
||||
if (keysym != null) {
|
||||
keydownChar[keynum] = keysym;
|
||||
press_key(keysym);
|
||||
|
||||
// If a key is pressed while meta is held down, the keyup will never be sent in Chrome, so send it now. (bug #108404)
|
||||
if(guac_keyboard.modifiers.meta) {
|
||||
release_key(keysym);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user