workspace: reap empty parents when adding tiles

(cherry picked from commit c12169953a)
This commit is contained in:
Ronan Pigott 2021-04-18 15:15:43 -07:00 committed by Simon Ser
parent 2660c0c1bc
commit d33f4957ce
1 changed files with 4 additions and 0 deletions

View File

@ -794,7 +794,11 @@ void workspace_detach(struct sway_workspace *workspace) {
struct sway_container *workspace_add_tiling(struct sway_workspace *workspace,
struct sway_container *con) {
if (con->pending.workspace) {
struct sway_container *old_parent = con->pending.parent;
container_detach(con);
if (old_parent) {
container_reap_empty(old_parent);
}
}
if (config->default_layout != L_NONE) {
con = container_split(con, config->default_layout);