ipc: add workspace::empty event

This commit is contained in:
Ian Fan 2018-07-13 21:55:04 +01:00
parent 4f8f363dda
commit 686c084cec
1 changed files with 2 additions and 0 deletions

View File

@ -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.