mirror of
https://github.com/labwc/labwc.git
synced 2025-11-07 13:30:06 -05:00
keybind: use XKB_KEYSYM_CASE_INSENSITIVE
This commit is contained in:
parent
1a38898f34
commit
cd9fe2900e
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue