aboutsummaryrefslogtreecommitdiff
path: root/sway/tree/container.c
diff options
context:
space:
mode:
authorIan Fan <ianfan0@gmail.com>2018-08-26 10:54:27 +0100
committerIan Fan <ianfan0@gmail.com>2018-08-26 19:01:09 +0100
commite7c94708f24e3a173acbb28e6d3d79884e5c2b12 (patch)
tree39f3063612447a2a252553880f3371e29bd36417 /sway/tree/container.c
parent6afc0590a1ad1b2d7f8276d34a607e8b61fbb6ca (diff)
ipc: emit window close event earlier, before destroying
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r--sway/tree/container.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index f13e2e96..6520c176 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -146,10 +146,10 @@ void container_begin_destroy(struct sway_container *con) {
return;
}
- wl_signal_emit(&con->events.destroy, con);
if (con->type == C_VIEW) {
ipc_event_window(con, "close");
}
+ wl_signal_emit(&con->events.destroy, con);
container_end_mouse_operation(con);