aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/workspace.c
diff options
context:
space:
mode:
authorLibravatar Ronan Pigott <rpigott@berkeley.edu>2021-04-18 15:15:43 -0700
committerLibravatar Ronan Pigott <rpigott@berkeley.edu>2021-04-26 13:14:24 -0700
commitc12169953abd393506367b949a63de5928ad9518 (patch)
tree317441764cc7f2f04c5240fc72e8cf102505778d /sway/tree/workspace.c
parentRemove support for arbitrary rotations (diff)
downloadsway-c12169953abd393506367b949a63de5928ad9518.tar.gz
sway-c12169953abd393506367b949a63de5928ad9518.tar.zst
sway-c12169953abd393506367b949a63de5928ad9518.zip
workspace: reap empty parents when adding tiles
Diffstat (limited to 'sway/tree/workspace.c')
-rw-r--r--sway/tree/workspace.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index 4e735064..c0da9c93 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -794,7 +794,11 @@ void workspace_detach(struct sway_workspace *workspace) {
794struct sway_container *workspace_add_tiling(struct sway_workspace *workspace, 794struct sway_container *workspace_add_tiling(struct sway_workspace *workspace,
795 struct sway_container *con) { 795 struct sway_container *con) {
796 if (con->pending.workspace) { 796 if (con->pending.workspace) {
797 struct sway_container *old_parent = con->pending.parent;
797 container_detach(con); 798 container_detach(con);
799 if (old_parent) {
800 container_reap_empty(old_parent);
801 }
798 } 802 }
799 if (config->default_layout != L_NONE) { 803 if (config->default_layout != L_NONE) {
800 con = container_split(con, config->default_layout); 804 con = container_split(con, config->default_layout);