summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/commands.c2
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) {
335 return error; 335 return error;
336 } 336 }
337 xkb_keycode_t *key = malloc(sizeof(xkb_keycode_t)); 337 xkb_keycode_t *key = malloc(sizeof(xkb_keycode_t));
338 *key = keycode; 338 *key = keycode - 8;
339 list_add(binding->keys, key); 339 list_add(binding->keys, key);
340 } 340 }
341 free_flat_list(split); 341 free_flat_list(split);