aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/input/click_method.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/input/click_method.c')
-rw-r--r--sway/commands/input/click_method.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/commands/input/click_method.c b/sway/commands/input/click_method.c
index a0e3bddf..dcf64c1a 100644
--- a/sway/commands/input/click_method.c
+++ b/sway/commands/input/click_method.c
@@ -1,6 +1,7 @@
1#include <string.h> 1#include <string.h>
2#include <strings.h> 2#include <strings.h>
3#include "sway/commands.h" 3#include "sway/commands.h"
4#include "sway/config.h"
4#include "sway/input/input-manager.h" 5#include "sway/input/input-manager.h"
5#include "log.h" 6#include "log.h"
6 7
@@ -29,6 +30,6 @@ struct cmd_results *input_cmd_click_method(int argc, char **argv) {
29 "Expected 'click_method <none|button_areas|clickfinger'"); 30 "Expected 'click_method <none|button_areas|clickfinger'");
30 } 31 }
31 32
32 input_cmd_apply(new_config); 33 apply_input_config(new_config);
33 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 34 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
34} 35}