aboutsummaryrefslogtreecommitdiff
path: root/sway/commands
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-05-11 07:33:51 -0400
committerGitHub <noreply@github.com>2018-05-11 07:33:51 -0400
commit08fe619e7472f4784ccdbfd283beeb14d813334c (patch)
tree41d5df55b9fded9b0622821ad1be9d747cec53c2 /sway/commands
parent8d99edf7870fbf4bf72837d0dded3991ceed0a95 (diff)
parent0a79983f9430263cf508535c7ce1aa27967b7ae8 (diff)
Merge pull request #1955 from ggreer/normal-borders
Allow setting border widths for normal borders using default_border.
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/default_border.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sway/commands/default_border.c b/sway/commands/default_border.c
index fcd2c075..2e356d3d 100644
--- a/sway/commands/default_border.c
+++ b/sway/commands/default_border.c
@@ -15,12 +15,12 @@ struct cmd_results *cmd_default_border(int argc, char **argv) {
config->border = B_NORMAL;
} else if (strcmp(argv[0], "pixel") == 0) {
config->border = B_PIXEL;
- if (argc == 2) {
- config->border_thickness = atoi(argv[1]);
- }
} else {
return cmd_results_new(CMD_INVALID, "default_border",
- "Expected 'default_border <none|normal|pixel>' or 'default_border pixel <px>'");
+ "Expected 'default_border <none|normal|pixel>' or 'default_border <normal|pixel> <px>'");
+ }
+ if (argc == 2) {
+ config->border_thickness = atoi(argv[1]);
}
return cmd_results_new(CMD_SUCCESS, NULL, NULL);