Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2016-09-06 23:32:17 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2016-09-06 23:32:17 +0300
commitd0e7c7a032d7377d2cef85db35c23329e1ff1862 (patch)
treeb44e45e4edfcb9699f3ee4f72f84be3a0d6e0664
parentf298c9ea1a23c71cf82e1a21fdd8711b8a8bfd8c (diff)
Add XK_ISO_Left_Tab to ghost's known X11 keydefines...
-rw-r--r--intern/ghost/intern/GHOST_SystemX11.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/ghost/intern/GHOST_SystemX11.cpp b/intern/ghost/intern/GHOST_SystemX11.cpp
index 87604bca45e..9a2dcfc9687 100644
--- a/intern/ghost/intern/GHOST_SystemX11.cpp
+++ b/intern/ghost/intern/GHOST_SystemX11.cpp
@@ -1606,6 +1606,7 @@ convertXKey(KeySym key)
switch (key) {
GXMAP(type, XK_BackSpace, GHOST_kKeyBackSpace);
GXMAP(type, XK_Tab, GHOST_kKeyTab);
+ GXMAP(type, XK_ISO_Left_Tab, GHOST_kKeyTab);
GXMAP(type, XK_Return, GHOST_kKeyEnter);
GXMAP(type, XK_Escape, GHOST_kKeyEsc);
GXMAP(type, XK_space, GHOST_kKeySpace);