GUACAMOLE-232: Correct inverted explicit/implicit logic.

This commit is contained in:
Michael Jumper
2018-10-03 11:43:25 -07:00
parent c04a71edad
commit 9d8027c5cd

View File

@@ -1051,10 +1051,10 @@ Guacamole.Keyboard = function Keyboard(element) {
for (var keysym in guac_keyboard.pressed) {
if (!implicitlyPressed[keysym])
return true;
return false;
}
return false;
return true;
};