Handle Super and Menu keys (Windows keys)

This commit is contained in:
Blindauer Emmanuel 2012-10-06 10:31:47 +02:00
parent 50b81d4470
commit c76b2a8101
1 changed files with 3 additions and 0 deletions

View File

@ -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;
}
}