fixed handling of ISO_Left_Tab when that is not mapped to a

keycode by mapping it to tab with shift pressed.
This commit is contained in:
crs 2002-05-03 12:14:55 +00:00
parent ab62dec0f7
commit afa14b67c2
1 changed files with 5 additions and 0 deletions

View File

@ -6,6 +6,7 @@
#include <X11/X.h>
#include <X11/Xutil.h>
#define XK_MISCELLANY
#define XK_XKB_KEYS
#include <X11/keysymdef.h>
#include <X11/extensions/XTest.h>
@ -664,6 +665,10 @@ bool CXWindowsSecondaryScreen::findKeyCode(
id = XK_Delete;
break;
case XK_ISO_Left_Tab:
id = XK_Tab;
break;
default:
return false;
}