From c76b2a8101cbf0f24bd6939de64de45ba8d9b4da Mon Sep 17 00:00:00 2001 From: Blindauer Emmanuel Date: Sat, 6 Oct 2012 10:31:47 +0200 Subject: [PATCH] Handle Super and Menu keys (Windows keys) --- include/input.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/input.js b/include/input.js index f285182d..96984278 100644 --- a/include/input.js +++ b/include/input.js @@ -84,6 +84,9 @@ function getKeysymSpecial(evt) { case 123 : keysym = 0xFFC9; break; // F12 case 225 : keysym = 0xFE03; break; // AltGr + case 91 : keysym = 0xFFEC; break; // Super_R (Win Key) + case 93 : keysym = 0xFF67; break; // Menu (Win Menu) + default : break; } }