diff --git a/guacamole-common-js/src/main/webapp/modules/Keyboard.js b/guacamole-common-js/src/main/webapp/modules/Keyboard.js index d19904151..30297633b 100644 --- a/guacamole-common-js/src/main/webapp/modules/Keyboard.js +++ b/guacamole-common-js/src/main/webapp/modules/Keyboard.js @@ -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; };