aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/split.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-10-12 21:26:06 -0400
committerLibravatar GitHub <noreply@github.com>2016-10-12 21:26:06 -0400
commit4cba91803eb8c3c3ab4ebf22e94510b43f7a907d (patch)
tree5f80bbe3775f0e405895ab973c62f8bbd8ea1bf8 /sway/commands/split.c
parentMerge pull request #952 from SirCmpwn/revert-948-floating-titlebar-click (diff)
downloadsway-4cba91803eb8c3c3ab4ebf22e94510b43f7a907d.tar.gz
sway-4cba91803eb8c3c3ab4ebf22e94510b43f7a907d.tar.zst
sway-4cba91803eb8c3c3ab4ebf22e94510b43f7a907d.zip
Revert "Fixes dealing with workspace_layout and related bugs [rfc]"
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 f3e58fbf..9ff1d638 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 swayc_change_layout(focused, layout); 28 focused->layout = 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 swayc_change_layout(focused->parent, layout); 32 focused->parent->layout = 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 */