aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Fan <ianfan0@gmail.com>2018-07-13 21:55:04 +0100
committerIan Fan <ianfan0@gmail.com>2018-08-01 16:57:14 +0100
commit686c084cec0b1143c877e8c0088732fad5229ce4 (patch)
tree80a3b3530d1d3baa99d1bb209d165979c5984221
parent4f8f363dda2495810e419be6e79c3869bb7f17d8 (diff)
ipc: add workspace::empty event
-rw-r--r--sway/tree/container.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index 47855052..3b3c5e2e 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -325,6 +325,8 @@ static struct sway_container *container_destroy_noreaping(
// emit IPC event
if (con->type == C_VIEW) {
ipc_event_window(con, "close");
+ } else if (con->type == C_WORKSPACE) {
+ ipc_event_workspace(NULL, con, "empty");
}
// The below functions move their children to somewhere else.