From 4cba91803eb8c3c3ab4ebf22e94510b43f7a907d Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 12 Oct 2016 21:26:06 -0400 Subject: Revert "Fixes dealing with workspace_layout and related bugs [rfc]" --- sway/commands/split.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sway/commands/split.c') 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 */ -- cgit v1.2.3