GUACAMOLE-232: Merge correct inverted explicit/implicit logic.

This commit is contained in:
Nick Couchman
2018-10-03 14:52:27 -04:00

View File

@@ -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;
}; };