aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/titlebar_padding.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/titlebar_padding.c')
-rw-r--r--sway/commands/titlebar_padding.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sway/commands/titlebar_padding.c b/sway/commands/titlebar_padding.c
index a642e945..29ce59ff 100644
--- a/sway/commands/titlebar_padding.c
+++ b/sway/commands/titlebar_padding.c
@@ -14,8 +14,7 @@ struct cmd_results *cmd_titlebar_padding(int argc, char **argv) {
14 char *inv; 14 char *inv;
15 int h_value = strtol(argv[0], &inv, 10); 15 int h_value = strtol(argv[0], &inv, 10);
16 if (*inv != '\0' || h_value < 0 || h_value < config->titlebar_border_thickness) { 16 if (*inv != '\0' || h_value < 0 || h_value < config->titlebar_border_thickness) {
17 return cmd_results_new(CMD_FAILURE, "titlebar_padding", 17 return cmd_results_new(CMD_FAILURE, "Invalid size specified");
18 "Invalid size specified");
19 } 18 }
20 19
21 int v_value; 20 int v_value;
@@ -24,8 +23,7 @@ struct cmd_results *cmd_titlebar_padding(int argc, char **argv) {
24 } else { 23 } else {
25 v_value = strtol(argv[1], &inv, 10); 24 v_value = strtol(argv[1], &inv, 10);
26 if (*inv != '\0' || v_value < 0 || v_value < config->titlebar_border_thickness) { 25 if (*inv != '\0' || v_value < 0 || v_value < config->titlebar_border_thickness) {
27 return cmd_results_new(CMD_FAILURE, "titlebar_padding", 26 return cmd_results_new(CMD_FAILURE, "Invalid size specified");
28 "Invalid size specified");
29 } 27 }
30 } 28 }
31 29
@@ -38,5 +36,5 @@ struct cmd_results *cmd_titlebar_padding(int argc, char **argv) {
38 output_damage_whole(output); 36 output_damage_whole(output);
39 } 37 }
40 38
41 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 39 return cmd_results_new(CMD_SUCCESS, NULL);
42} 40}