summaryrefslogtreecommitdiffstats
path: root/sway/commands/layout.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/layout.c')
-rw-r--r--sway/commands/layout.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/commands/layout.c b/sway/commands/layout.c
index 40ebd590..57a86565 100644
--- a/sway/commands/layout.c
+++ b/sway/commands/layout.c
@@ -85,6 +85,10 @@ static struct cmd_results *cmd_layout_auto(swayc_t *container, int argc, char **
85 enum swayc_layouts old_layout = container->layout; 85 enum swayc_layouts old_layout = container->layout;
86 enum swayc_layouts layout = old_layout; 86 enum swayc_layouts layout = old_layout;
87 87
88 if ((error = checkarg(argc, "layout auto", EXPECTED_MORE_THAN, 1))) {
89 return error;
90 }
91
88 if (strcasecmp(argv[1], "left") == 0) { 92 if (strcasecmp(argv[1], "left") == 0) {
89 layout = L_AUTO_LEFT; 93 layout = L_AUTO_LEFT;
90 } else if (strcasecmp(argv[1], "right") == 0) { 94 } else if (strcasecmp(argv[1], "right") == 0) {