# HG changeset patch # User Guido Berhoerster # Date 1374945667 -7200 # Node ID 957d697d27d30af77026e7b824c6bfb734ed572f # Parent 432155b982cfa39f4f77ae03222508d2e39fb7cb Minimize interference with menus Fake keypresses of the left Alt key interfere with the menus of several toolkits, use the left Shift key instead. diff -r 432155b982cf -r 957d697d27d3 xia-inhibitor.c --- a/xia-inhibitor.c Sat Apr 27 21:30:44 2013 +0200 +++ b/xia-inhibitor.c Sat Jul 27 19:21:07 2013 +0200 @@ -62,7 +62,7 @@ if (keycode == 0) { keycode = XKeysymToKeycode(gdk_x11_get_default_xdisplay(), - XK_Alt_L); + XK_Shift_L); if (keycode == 0) { return (TRUE); }