]> source.dussan.org Git - tigervnc.git/commitdiff
Stop mapping Meta to Super
authorPierre Ossman <ossman@cendio.se>
Mon, 16 Feb 2015 15:24:26 +0000 (16:24 +0100)
committerPierre Ossman <ossman@cendio.se>
Mon, 16 Feb 2015 15:24:26 +0000 (16:24 +0100)
A lot of X11 keyboard layouts send Meta for Shift-Alt so it's not
really a good idea to assume this is the Windows key.

vncviewer/Viewport.cxx

index 4daff16435dc088f412aa8e7cd6f873596273760..b319a81cdbde668d57ce4723f72f85cc55898e13 100644 (file)
@@ -782,11 +782,9 @@ int Viewport::handleSystemEvent(void *event, void *data)
     // For the first few years, there wasn't a good consensus on what the
     // Windows keys should be mapped to for X11. So we need to help out a
     // bit and map all variants to the same key...
-    case XK_Meta_L:
     case XK_Hyper_L:
       keysym = XK_Super_L;
       break;
-    case XK_Meta_R:
     case XK_Hyper_R:
       keysym = XK_Super_R;
       break;