aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/input
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-10-03 07:48:35 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-10-03 07:50:37 -0400
commite60ad3f677bfc788568cc30ab12dc2ea6fa2a493 (patch)
tree0470aaf35334c446af346c41cf8640710e93e08b /sway/commands/input
parentMerge pull request #2703 from RyanDwyer/csd-border (diff)
downloadsway-e60ad3f677bfc788568cc30ab12dc2ea6fa2a493.tar.gz
sway-e60ad3f677bfc788568cc30ab12dc2ea6fa2a493.tar.zst
sway-e60ad3f677bfc788568cc30ab12dc2ea6fa2a493.zip
Fix some missing commands in sway-input(5)
Diffstat (limited to 'sway/commands/input')
-rw-r--r--sway/commands/input/click_method.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/input/click_method.c b/sway/commands/input/click_method.c
index 4d7e1c93..24777475 100644
--- a/sway/commands/input/click_method.c
+++ b/sway/commands/input/click_method.c
@@ -24,7 +24,7 @@ struct cmd_results *input_cmd_click_method(int argc, char **argv) {
24 ic->click_method = LIBINPUT_CONFIG_CLICK_METHOD_CLICKFINGER; 24 ic->click_method = LIBINPUT_CONFIG_CLICK_METHOD_CLICKFINGER;
25 } else { 25 } else {
26 return cmd_results_new(CMD_INVALID, "click_method", 26 return cmd_results_new(CMD_INVALID, "click_method",
27 "Expected 'click_method <none|button_areas|clickfinger'"); 27 "Expected 'click_method <none|button_areas|clickfinger'>");
28 } 28 }
29 29
30 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 30 return cmd_results_new(CMD_SUCCESS, NULL, NULL);