Bugfix: Don’t close workspace when there are still floating windows on it (Thanks noxxun) (+test)
Fixes: #595
This commit is contained in:
@ -1061,8 +1061,7 @@ static void con_on_remove_child(Con *con) {
|
||||
|
||||
/* For workspaces, close them only if they're not visible anymore */
|
||||
if (con->type == CT_WORKSPACE) {
|
||||
int children = con_num_children(con);
|
||||
if (children == 0 && !workspace_is_visible(con)) {
|
||||
if (TAILQ_EMPTY(&(con->focus_head)) && !workspace_is_visible(con)) {
|
||||
LOG("Closing old workspace (%p / %s), it is empty\n", con, con->name);
|
||||
tree_close(con, DONT_KILL_WINDOW, false, false);
|
||||
ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
|
||||
|
Reference in New Issue
Block a user