mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 07:51:28 +00:00
Push the XKB key to the key list
Instead of the key name
This commit is contained in:
parent
5767dcc86e
commit
254d0df3b2
|
@ -43,7 +43,9 @@ int cmd_bindsym(struct sway_config *config, int argc, char **argv) {
|
||||||
// Ignore for now, we need to deal with modifier keys
|
// Ignore for now, we need to deal with modifier keys
|
||||||
// return 1;
|
// return 1;
|
||||||
}
|
}
|
||||||
list_add(binding->keys, split->items[i]);
|
xkb_keysym_t *key = malloc(sizeof(xkb_keysym_t));
|
||||||
|
*key = sym;
|
||||||
|
list_add(binding->keys, key);
|
||||||
}
|
}
|
||||||
list_free(split);
|
list_free(split);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue