diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-19 08:56:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-19 08:56:03 -0400 |
commit | 21eb63cc9ebff4e843595c64e40b5707a158c925 (patch) | |
tree | 8be54bda3c472f31666e0d2fad5b5647d67c62e6 /sway/commands/input.c | |
parent | 9715e38ca82f891afdb824d02b7f19a2587e24c1 (diff) | |
parent | 2f0120e458cae47f38a3c09af174bae60964151c (diff) |
Merge branch 'master' into fullscreen
Diffstat (limited to 'sway/commands/input.c')
-rw-r--r-- | sway/commands/input.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/commands/input.c b/sway/commands/input.c index fa9cf05a..eeb4ee75 100644 --- a/sway/commands/input.c +++ b/sway/commands/input.c @@ -55,6 +55,10 @@ struct cmd_results *cmd_input(int argc, char **argv) { res = input_cmd_natural_scroll(argc_new, argv_new); } else if (strcasecmp("pointer_accel", argv[1]) == 0) { res = input_cmd_pointer_accel(argc_new, argv_new); + } else if (strcasecmp("repeat_delay", argv[1]) == 0) { + res = input_cmd_repeat_delay(argc_new, argv_new); + } else if (strcasecmp("repeat_rate", argv[1]) == 0) { + res = input_cmd_repeat_rate(argc_new, argv_new); } else if (strcasecmp("scroll_method", argv[1]) == 0) { res = input_cmd_scroll_method(argc_new, argv_new); } else if (strcasecmp("tap", argv[1]) == 0) { |