From 9d8027c5cdb3eaa726dd48afe91f3bb7650cca2c Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 3 Oct 2018 11:43:25 -0700 Subject: [PATCH] GUACAMOLE-232: Correct inverted explicit/implicit logic. --- guacamole-common-js/src/main/webapp/modules/Keyboard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; };