From cd9fe2900efade3cd9c32bfd18eb6647ef672057 Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Tue, 29 Dec 2020 19:02:04 +0000 Subject: [PATCH] keybind: use XKB_KEYSYM_CASE_INSENSITIVE --- src/config/keybind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);