aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/bind.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/bind.c')
-rw-r--r--sway/commands/bind.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/commands/bind.c b/sway/commands/bind.c
index c86c39dd..4e49982a 100644
--- a/sway/commands/bind.c
+++ b/sway/commands/bind.c
@@ -373,6 +373,8 @@ static struct cmd_results *cmd_bindsym_or_bindcode(int argc, char **argv,
373 binding->input = strdup(argv[0] + strlen("--input-device=")); 373 binding->input = strdup(argv[0] + strlen("--input-device="));
374 } else if (strcmp("--no-warn", argv[0]) == 0) { 374 } else if (strcmp("--no-warn", argv[0]) == 0) {
375 warn = false; 375 warn = false;
376 } else if (strcmp("--no-repeat", argv[0]) == 0) {
377 binding->flags |= BINDING_NOREPEAT;
376 } else { 378 } else {
377 break; 379 break;
378 } 380 }