aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/layout.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/layout.c')
-rw-r--r--sway/commands/layout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/commands/layout.c b/sway/commands/layout.c
index e0af30aa..05ab0a18 100644
--- a/sway/commands/layout.c
+++ b/sway/commands/layout.c
@@ -49,10 +49,10 @@ struct cmd_results *cmd_layout(int argc, char **argv) {
49 } else if (strcasecmp(argv[0], "splitv") == 0) { 49 } else if (strcasecmp(argv[0], "splitv") == 0) {
50 parent->layout = L_VERT; 50 parent->layout = L_VERT;
51 } else if (strcasecmp(argv[0], "toggle") == 0 && argc == 2 && strcasecmp(argv[1], "split") == 0) { 51 } else if (strcasecmp(argv[0], "toggle") == 0 && argc == 2 && strcasecmp(argv[1], "split") == 0) {
52 if (parent->layout == L_VERT) { 52 if (parent->layout == L_HORIZ) {
53 parent->layout = L_HORIZ;
54 } else {
55 parent->layout = L_VERT; 53 parent->layout = L_VERT;
54 } else {
55 parent->layout = L_HORIZ;
56 } 56 }
57 } 57 }
58 } 58 }