floating: correctly kill floating containers when closing
This commit is contained in:
parent
2f4210d3cf
commit
948378fa55
|
@ -174,6 +174,14 @@ void tree_close(Con *con, bool kill_window) {
|
||||||
con_detach(con);
|
con_detach(con);
|
||||||
con_fix_percent(con->parent, WINDOW_REMOVE);
|
con_fix_percent(con->parent, WINDOW_REMOVE);
|
||||||
|
|
||||||
|
if (con_is_floating(con)) {
|
||||||
|
DLOG("Container was floating, killing floating container\n");
|
||||||
|
|
||||||
|
TAILQ_REMOVE(&(con->parent->parent->floating_head), con->parent, floating_windows);
|
||||||
|
TAILQ_REMOVE(&(con->parent->parent->focus_head), con->parent, focused);
|
||||||
|
tree_close(con->parent, false);
|
||||||
|
}
|
||||||
|
|
||||||
free(con->name);
|
free(con->name);
|
||||||
TAILQ_REMOVE(&all_cons, con, all_cons);
|
TAILQ_REMOVE(&all_cons, con, all_cons);
|
||||||
free(con);
|
free(con);
|
||||||
|
|
Loading…
Reference in New Issue