summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-02-28 16:57:16 +0100
committerDave Davenport <qball@gmpclient.org>2016-02-28 16:57:16 +0100
commit28ed4eab7ba2fc782cd2039a8e488bcf8095643e (patch)
tree9a0cb24fd6c2b52575b7f1bb613440b9e0c31e8a /source
parent21bce63e79656dc4cf9dbcb6c4706dd947e0b4ca (diff)
Take SardemFF7 advice on aliasing Ctrl+s and Ctrl+S, shift needs to mentioned explicit
Diffstat (limited to 'source')
-rw-r--r--source/x11-helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/x11-helper.c b/source/x11-helper.c
index fd9941a1..b99c4814 100644
--- a/source/x11-helper.c
+++ b/source/x11-helper.c
@@ -453,7 +453,7 @@ void x11_parse_key ( char *combo, unsigned int *mod, xkb_keysym_t *key )
}
}
if ( sym == XKB_KEY_NoSymbol ) {
- sym = xkb_keysym_from_name ( combo + i, XKB_KEYSYM_NO_FLAGS );
+ sym = xkb_keysym_from_name ( combo + i, XKB_KEYSYM_CASE_INSENSITIVE );
}
if ( sym == XKB_KEY_NoSymbol || ( !modmask && ( strchr ( combo, '-' ) || strchr ( combo, '+' ) ) ) ) {