[Gtkradiant] [Bug 895] Keyboard shortcuts stop working after a while

gtkradiant@zerowing.idsoftware.com gtkradiant@zerowing.idsoftware.com
Wed, 15 Oct 2003 06:13:28 -0500


http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=895





------- Additional Comments From wjoseph@europe.ea.com  2003-10-15 06:13 -------
Is Caps-Lock on? gtk+-2.2.2 treats all keypresses as +shift when capslock is 
on. This is fixed in gtk+-2.2.4, which comes with 1.3.12.
Also.. I think there's a separate quirk in all versions of gtk2 that changes 
the GDK_Tab key to GDK_ISO_Left_Tab when capslock is on. This is not fixed in 
2.2.4, so we need to add a workaround in mainframe_keypress..

if(code == GDK_ISO_Left_Tab)
{
  code = GDK_Left_Tab;
}