aboutsummaryrefslogtreecommitdiff
path: root/sway/commands
diff options
context:
space:
mode:
authorRonan Pigott <rpigott@berkeley.edu>2020-10-23 12:00:45 -0700
committerTudor Brindus <me@tbrindus.ca>2020-12-20 00:58:42 -0500
commit2478f2f010bea58d4a7533d82f155a10ed04dd66 (patch)
tree6b8e0c5ed967fd6581b853addfc032ff55370e9d /sway/commands
parent33b64667ae0bfe9af752cb8c850b4f52b34660d2 (diff)
downloadsway-2478f2f010bea58d4a7533d82f155a10ed04dd66.tar.xz
container: don't split single children
In i3 splits are ineffective on singleton H/V containers, and the command is interpreted to affect the parent layout instead.
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/split.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sway/commands/split.c b/sway/commands/split.c
index ec56c2f0..782bab02 100644
--- a/sway/commands/split.c
+++ b/sway/commands/split.c
@@ -23,10 +23,6 @@ static struct cmd_results *do_split(int layout) {
workspace_split(ws, layout);
}
- if (con && con->parent && con->parent->parent) {
- container_flatten(con->parent->parent);
- }
-
if (root->fullscreen_global) {
arrange_root();
} else {