From f5ed65e633b6ec3afe4a5f654a48fd96f187b282 Mon Sep 17 00:00:00 2001 From: frsfnrrg Date: Thu, 31 May 2018 19:33:38 -0400 Subject: [PATCH] Use XKB keycode numbering for bindcode --- sway/commands/bind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/commands/bind.c b/sway/commands/bind.c index f3bf72ad9..f963001bb 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; }