From 8e920d17d1d5c974536977a62a61d4b26cf1928e Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Fri, 19 Sep 2014 01:24:28 -0700 Subject: [PATCH] GUAC-659: Do not repeat AltGr. --- guacamole-common-js/src/main/webapp/modules/Keyboard.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guacamole-common-js/src/main/webapp/modules/Keyboard.js b/guacamole-common-js/src/main/webapp/modules/Keyboard.js index 4b2050541..635c72ef9 100644 --- a/guacamole-common-js/src/main/webapp/modules/Keyboard.js +++ b/guacamole-common-js/src/main/webapp/modules/Keyboard.js @@ -231,6 +231,7 @@ Guacamole.Keyboard = function(element) { * @private */ var no_repeat = { + 0xFE03: true, // ISO Level 3 Shift (AltGr) 0xFFE1: true, // Left shift 0xFFE2: true, // Right shift 0xFFE3: true, // Left ctrl @@ -238,7 +239,7 @@ Guacamole.Keyboard = function(element) { 0xFFE7: true, // Left meta 0xFFE8: true, // Right meta 0xFFE9: true, // Left alt - 0xFFEA: true, // Right alt (or AltGr) + 0xFFEA: true, // Right alt 0xFFEB: true, // Left hyper 0xFFEC: true // Right hyper };