Commit c76b2a81 authored by Blindauer Emmanuel's avatar Blindauer Emmanuel

Handle Super and Menu keys (Windows keys)

parent 50b81d44
...@@ -84,6 +84,9 @@ function getKeysymSpecial(evt) { ...@@ -84,6 +84,9 @@ function getKeysymSpecial(evt) {
case 123 : keysym = 0xFFC9; break; // F12 case 123 : keysym = 0xFFC9; break; // F12
case 225 : keysym = 0xFE03; break; // AltGr 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; default : break;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment