aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/split.c
diff options
context:
space:
mode:
authorLibravatar D.B <thejan.2009@gmail.com>2016-10-10 20:44:09 +0200
committerLibravatar D.B <thejan.2009@gmail.com>2016-10-11 09:16:59 +0200
commit571321a1d84a1eb2867fbdc39f7f828aa2c64a01 (patch)
treead61090d261ccec47efc36b19f2b7266a01c1bdc /sway/commands/split.c
parentwrap workspace's child into a container if needed (diff)
downloadsway-571321a1d84a1eb2867fbdc39f7f828aa2c64a01.tar.gz
sway-571321a1d84a1eb2867fbdc39f7f828aa2c64a01.tar.zst
sway-571321a1d84a1eb2867fbdc39f7f828aa2c64a01.zip
add workspace_layout, ensure ws is always L_HORIZ
Add swayc_change_layout function, which changes either layout or workspace_layout, depending on the container type. Workspace being always L_HORIZ makes this much more i3-compatible.
Diffstat (limited to 'sway/commands/split.c')
-rw-r--r--sway/commands/split.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/split.c b/sway/commands/split.c
index 9ff1d638..f3e58fbf 100644
--- a/sway/commands/split.c
+++ b/sway/commands/split.c
@@ -25,11 +25,11 @@ static struct cmd_results *_do_split(int argc, char **argv, int layout) {
25 /* Case that focus is on an workspace with 0/1 children.change its layout */ 25 /* Case that focus is on an workspace with 0/1 children.change its layout */
26 if (focused->type == C_WORKSPACE && focused->children->length <= 1) { 26 if (focused->type == C_WORKSPACE && focused->children->length <= 1) {
27 sway_log(L_DEBUG, "changing workspace layout"); 27 sway_log(L_DEBUG, "changing workspace layout");
28 focused->layout = layout; 28 swayc_change_layout(focused, layout);
29 } else if (focused->type != C_WORKSPACE && focused->parent->children->length == 1) { 29 } else if (focused->type != C_WORKSPACE && focused->parent->children->length == 1) {
30 /* Case of no siblings. change parent layout */ 30 /* Case of no siblings. change parent layout */
31 sway_log(L_DEBUG, "changing container layout"); 31 sway_log(L_DEBUG, "changing container layout");
32 focused->parent->layout = layout; 32 swayc_change_layout(focused->parent, layout);
33 } else { 33 } else {
34 /* regular case where new split container is build around focused container 34 /* regular case where new split container is build around focused container
35 * or in case of workspace, container inherits its children */ 35 * or in case of workspace, container inherits its children */