SYS : catch the shift+tab event

This commit is contained in:
2011-09-04 12:08:48 +02:00
parent 0e6c34d2a0
commit 1b3dd3ce98
3 changed files with 5 additions and 3 deletions

View File

@@ -593,6 +593,8 @@ void ConvertInput(GdkEventKey *event, char* Utf8Out, bool &controlKey, bool &mov
# elif USE_GTK_VERSION_2_0
case GDK_KP_Tab:
# endif
// shift + TAB ... same as a tab here ...
case 0xfe20: //GDK_ISO_Left_Tab
case 65289:
key = (int32_t)'\t';
break;