aboutsummaryrefslogtreecommitdiff
path: root/sway/tree
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-04-06 09:26:28 -0400
committerDrew DeVault <sir@cmpwn.com>2018-04-06 09:26:49 -0400
commitb08f7e5183d25ce0d4ae89796893a6d25d4a1b93 (patch)
tree70b9e3f290fcbdb203a0d2c8911b4da83d326085 /sway/tree
parent3499cc6c8702ed1959ead391f4bb54f7a69fe18a (diff)
Fix deletion of still-visible workspaces on unfocus
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/container.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index 41321dc8..ab8363bc 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -216,6 +216,7 @@ static bool container_reap_empty(struct sway_container *con) {
break;
case C_WORKSPACE:
if (!workspace_is_visible(con) && con->children->length == 0) {
+ wlr_log(L_DEBUG, "Destroying workspace via reaper");
container_workspace_destroy(con);
return true;
}