aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-10-09 05:43:22 +0200
committerSven Gothel <[email protected]>2012-10-09 05:43:22 +0200
commit14fcd3fced135a2a419e61fd260fa3b7e16816b9 (patch)
tree4b0892c000ae8f5604291cca2f0bd5ebd4cf65f8 /src/newt
parentfea39b39e01517ec1f5404b5596a1610366fa27f (diff)
NEWT X11/KeyMap: Add XK_grave -> J_VK_BACK_QUOTE
Diffstat (limited to 'src/newt')
-rw-r--r--src/newt/native/X11Display.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/newt/native/X11Display.c b/src/newt/native/X11Display.c
index 69a115ab1..d8202fcde 100644
--- a/src/newt/native/X11Display.c
+++ b/src/newt/native/X11Display.c
@@ -146,6 +146,8 @@ static jint X11KeySym2NewtVKey(KeySym keySym) {
return J_VK_INSERT;
case XK_Help:
return J_VK_HELP;
+ case XK_grave:
+ return J_VK_BACK_QUOTE;
}
return keySym;
}