You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by vn...@apache.org on 2018/10/03 18:53:06 UTC

[1/2] guacamole-client git commit: GUACAMOLE-232: Correct inverted explicit/implicit logic.

Repository: guacamole-client
Updated Branches:
  refs/heads/staging/1.0.0 c04a71eda -> f46f52dba


GUACAMOLE-232: Correct inverted explicit/implicit logic.

Project: http://git-wip-us.apache.org/repos/asf/guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/guacamole-client/commit/9d8027c5
Tree: http://git-wip-us.apache.org/repos/asf/guacamole-client/tree/9d8027c5
Diff: http://git-wip-us.apache.org/repos/asf/guacamole-client/diff/9d8027c5

Branch: refs/heads/staging/1.0.0
Commit: 9d8027c5cdb3eaa726dd48afe91f3bb7650cca2c
Parents: c04a71e
Author: Michael Jumper <mj...@apache.org>
Authored: Wed Oct 3 11:43:25 2018 -0700
Committer: Michael Jumper <mj...@apache.org>
Committed: Wed Oct 3 11:47:07 2018 -0700

----------------------------------------------------------------------
 guacamole-common-js/src/main/webapp/modules/Keyboard.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/9d8027c5/guacamole-common-js/src/main/webapp/modules/Keyboard.js
----------------------------------------------------------------------
diff --git a/guacamole-common-js/src/main/webapp/modules/Keyboard.js b/guacamole-common-js/src/main/webapp/modules/Keyboard.js
index d199041..3029763 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;
 
     };
 


[2/2] guacamole-client git commit: GUACAMOLE-232: Merge correct inverted explicit/implicit logic.

Posted by vn...@apache.org.
GUACAMOLE-232: Merge correct inverted explicit/implicit logic.


Project: http://git-wip-us.apache.org/repos/asf/guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/guacamole-client/commit/f46f52db
Tree: http://git-wip-us.apache.org/repos/asf/guacamole-client/tree/f46f52db
Diff: http://git-wip-us.apache.org/repos/asf/guacamole-client/diff/f46f52db

Branch: refs/heads/staging/1.0.0
Commit: f46f52dbacae45e8ceee6d6e2b6b20ec112653dd
Parents: c04a71e 9d8027c
Author: Nick Couchman <vn...@apache.org>
Authored: Wed Oct 3 14:52:27 2018 -0400
Committer: Nick Couchman <vn...@apache.org>
Committed: Wed Oct 3 14:52:27 2018 -0400

----------------------------------------------------------------------
 guacamole-common-js/src/main/webapp/modules/Keyboard.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------