summaryrefslogtreecommitdiff
path: root/sway/commands/split.c
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2016-10-12 21:26:06 -0400
committerGitHub <[email protected]>2016-10-12 21:26:06 -0400
commit4cba91803eb8c3c3ab4ebf22e94510b43f7a907d (patch)
tree5f80bbe3775f0e405895ab973c62f8bbd8ea1bf8 /sway/commands/split.c
parent857eea8b6355deff7a12edd8b733f8057210142a (diff)
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) {
/* Case that focus is on an workspace with 0/1 children.change its layout */
if (focused->type == C_WORKSPACE && focused->children->length <= 1) {
sway_log(L_DEBUG, "changing workspace layout");
- swayc_change_layout(focused, layout);
+ focused->layout = layout;
} else if (focused->type != C_WORKSPACE && focused->parent->children->length == 1) {
/* Case of no siblings. change parent layout */
sway_log(L_DEBUG, "changing container layout");
- swayc_change_layout(focused->parent, layout);
+ focused->parent->layout = layout;
} else {
/* regular case where new split container is build around focused container
* or in case of workspace, container inherits its children */