diff options
author | frsfnrrg <frsfnrrg@users.noreply.github.com> | 2018-05-31 19:33:38 -0400 |
---|---|---|
committer | frsfnrrg <frsfnrrg@users.noreply.github.com> | 2018-06-01 18:52:36 -0400 |
commit | f5ed65e633b6ec3afe4a5f654a48fd96f187b282 (patch) | |
tree | 9dc84a27bb1d42ef5b79187ed7042ef2e71e2cad /sway/commands/bind.c | |
parent | d77681ea3d84f1f02164f3cb0a29a42616afd23b (diff) |
Use XKB keycode numbering for bindcode
Diffstat (limited to 'sway/commands/bind.c')
-rw-r--r-- | sway/commands/bind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/bind.c b/sway/commands/bind.c index f3bf72ad..f963001b 100644 --- a/sway/commands/bind.c +++ b/sway/commands/bind.c @@ -158,7 +158,7 @@ static struct cmd_results * cmd_bindsym_or_bindcode(int argc, char **argv, bool } if (bindcode) { - *key = (uint32_t) (keycode - 8); + *key = (uint32_t) keycode; } else { *key = (uint32_t) keysym; } |