mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
GUACAMOLE-232: Correct inverted explicit/implicit logic.
This commit is contained in:
@@ -1051,10 +1051,10 @@ Guacamole.Keyboard = function Keyboard(element) {
|
|||||||
|
|
||||||
for (var keysym in guac_keyboard.pressed) {
|
for (var keysym in guac_keyboard.pressed) {
|
||||||
if (!implicitlyPressed[keysym])
|
if (!implicitlyPressed[keysym])
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return true;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user