From: Johan Malm Date: Tue, 29 Dec 2020 19:02:04 +0000 (+0000) Subject: keybind: use XKB_KEYSYM_CASE_INSENSITIVE X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=cd9fe2900efade3cd9c32bfd18eb6647ef672057;p=proto%2Flabwc.git keybind: use XKB_KEYSYM_CASE_INSENSITIVE --- diff --git a/src/config/keybind.c b/src/config/keybind.c index 079cbee4..75a17781 100644 --- a/src/config/keybind.c +++ b/src/config/keybind.c @@ -37,7 +37,7 @@ keybind_create(const char *keybind) k->modifiers |= modifier; } else { xkb_keysym_t sym = xkb_keysym_from_name( - symname, XKB_KEYSYM_NO_FLAGS); + symname, XKB_KEYSYM_CASE_INSENSITIVE); if (sym == XKB_KEY_NoSymbol) { warn("unknown keybind (%s)", symname); free(k);