aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/layout.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-08-24 08:27:05 -0400
committerLibravatar GitHub <noreply@github.com>2018-08-24 08:27:05 -0400
commite86d99acd655815781cd2e23877ce58ab5b24826 (patch)
tree5e056a7859751c68c0cfb425fc6f37599c3f7400 /sway/tree/layout.c
parentMerge pull request #2470 from ianyfan/completions (diff)
parentRefactor destroy functions and save workspaces when there's no outputs (diff)
downloadsway-e86d99acd655815781cd2e23877ce58ab5b24826.tar.gz
sway-e86d99acd655815781cd2e23877ce58ab5b24826.tar.zst
sway-e86d99acd655815781cd2e23877ce58ab5b24826.zip
Merge pull request #2499 from RyanDwyer/refactor-destroy-functions
Refactor destroy functions and save workspaces when there's no outputs
Diffstat (limited to 'sway/tree/layout.c')
-rw-r--r--sway/tree/layout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/tree/layout.c b/sway/tree/layout.c
index a3de44ce..12e7342b 100644
--- a/sway/tree/layout.c
+++ b/sway/tree/layout.c
@@ -302,7 +302,7 @@ static void workspace_rejigger(struct sway_container *ws,
302 move_dir == MOVE_LEFT || move_dir == MOVE_RIGHT ? L_HORIZ : L_VERT; 302 move_dir == MOVE_LEFT || move_dir == MOVE_RIGHT ? L_HORIZ : L_VERT;
303 303
304 container_flatten(ws); 304 container_flatten(ws);
305 container_reap_empty_recursive(original_parent); 305 container_reap_empty(original_parent);
306 container_create_notify(new_parent); 306 container_create_notify(new_parent);
307} 307}
308 308
@@ -325,7 +325,7 @@ static void move_out_of_tabs_stacks(struct sway_container *container,
325 container_insert_child(new_parent->parent, container, offs < 0 ? 0 : 1); 325 container_insert_child(new_parent->parent, container, offs < 0 ? 0 : 1);
326 } else { 326 } else {
327 container_insert_child(new_parent, container, offs < 0 ? 0 : 1); 327 container_insert_child(new_parent, container, offs < 0 ? 0 : 1);
328 container_reap_empty_recursive(new_parent->parent); 328 container_reap_empty(new_parent->parent);
329 container_flatten(new_parent->parent); 329 container_flatten(new_parent->parent);
330 } 330 }
331 container_create_notify(new_parent); 331 container_create_notify(new_parent);