From afa14b67c204f3757e8d9a29dc863e865d3d1181 Mon Sep 17 00:00:00 2001 From: crs Date: Fri, 3 May 2002 12:14:55 +0000 Subject: [PATCH] fixed handling of ISO_Left_Tab when that is not mapped to a keycode by mapping it to tab with shift pressed. --- client/CXWindowsSecondaryScreen.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/CXWindowsSecondaryScreen.cpp b/client/CXWindowsSecondaryScreen.cpp index c0cdffc1..668f4635 100644 --- a/client/CXWindowsSecondaryScreen.cpp +++ b/client/CXWindowsSecondaryScreen.cpp @@ -6,6 +6,7 @@ #include #include #define XK_MISCELLANY +#define XK_XKB_KEYS #include #include @@ -664,6 +665,10 @@ bool CXWindowsSecondaryScreen::findKeyCode( id = XK_Delete; break; + case XK_ISO_Left_Tab: + id = XK_Tab; + break; + default: return false; }