workspace: reap empty parents when adding tiles

This commit is contained in:
Ronan Pigott 2021-04-18 15:15:43 -07:00
parent fd36289faa
commit c12169953a
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);