summaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 38bfd68a..e03eef24 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -317,7 +317,7 @@ static struct cmd_results *cmd_bindcode(int argc, char **argv) {
317 } 317 }
318 // parse keycode 318 // parse keycode
319 int keycode = (int)strtol(split->items[i], NULL, 10); 319 int keycode = (int)strtol(split->items[i], NULL, 10);
320 if (!xkb_keycode_is_legal_x11(keycode)) { 320 if (!xkb_keycode_is_legal_ext(keycode)) {
321 error = cmd_results_new(CMD_INVALID, "bindcode", "Invalid keycode '%s'", (char *)split->items[i]); 321 error = cmd_results_new(CMD_INVALID, "bindcode", "Invalid keycode '%s'", (char *)split->items[i]);
322 free_sway_binding(binding); 322 free_sway_binding(binding);
323 list_free(split); 323 list_free(split);