aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/input/accel_profile.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/input/accel_profile.c')
-rw-r--r--sway/commands/input/accel_profile.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sway/commands/input/accel_profile.c b/sway/commands/input/accel_profile.c
index f7016790..08f324cc 100644
--- a/sway/commands/input/accel_profile.c
+++ b/sway/commands/input/accel_profile.c
@@ -11,8 +11,7 @@ struct cmd_results *input_cmd_accel_profile(int argc, char **argv) {
11 } 11 }
12 struct input_config *ic = config->handler_context.input_config; 12 struct input_config *ic = config->handler_context.input_config;
13 if (!ic) { 13 if (!ic) {
14 return cmd_results_new(CMD_FAILURE, "accel_profile", 14 return cmd_results_new(CMD_FAILURE, "No input device defined.");
15 "No input device defined.");
16 } 15 }
17 16
18 if (strcasecmp(argv[0], "adaptive") == 0) { 17 if (strcasecmp(argv[0], "adaptive") == 0) {
@@ -20,9 +19,9 @@ struct cmd_results *input_cmd_accel_profile(int argc, char **argv) {
20 } else if (strcasecmp(argv[0], "flat") == 0) { 19 } else if (strcasecmp(argv[0], "flat") == 0) {
21 ic->accel_profile = LIBINPUT_CONFIG_ACCEL_PROFILE_FLAT; 20 ic->accel_profile = LIBINPUT_CONFIG_ACCEL_PROFILE_FLAT;
22 } else { 21 } else {
23 return cmd_results_new(CMD_INVALID, "accel_profile", 22 return cmd_results_new(CMD_INVALID,
24 "Expected 'accel_profile <adaptive|flat>'"); 23 "Expected 'accel_profile <adaptive|flat>'");
25 } 24 }
26 25
27 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 26 return cmd_results_new(CMD_SUCCESS, NULL);
28} 27}