diff options
author | Mikkel Oscar Lyderik <mikkeloscar@gmail.com> | 2016-04-28 21:03:38 +0200 |
---|---|---|
committer | Mikkel Oscar Lyderik <mikkeloscar@gmail.com> | 2016-04-28 21:05:38 +0200 |
commit | 1fb9489032ca8fed47798e5051a0f8ddf6e105d7 (patch) | |
tree | afb4df145abc7145a5dafcbacda8795c84c82d06 /sway | |
parent | 17543d3e00ce6d185a226abf9aa3322bc1460607 (diff) |
Fix bindcode by offsetting xkb keycode by 8
The bindcode has to be offset by 8 to match the keycode we get from wlc.
https://github.com/xkbcommon/libxkbcommon/blob/master/xkbcommon/xkbcommon.h#L160
Diffstat (limited to 'sway')
-rw-r--r-- | sway/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c index 34364917..c1390016 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -335,7 +335,7 @@ static struct cmd_results *cmd_bindcode(int argc, char **argv) { return error; } xkb_keycode_t *key = malloc(sizeof(xkb_keycode_t)); - *key = keycode; + *key = keycode - 8; list_add(binding->keys, key); } free_flat_list(split); |