summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonan Pigott <rpigott@berkeley.edu>2021-10-24 18:51:16 -0700
committerSimon Ser <contact@emersion.fr>2021-12-17 14:39:48 +0100
commit9ecbfe366596f627e843886d94e47097e19df5d5 (patch)
tree9ad07267a9fc290213f844627949781d6f2b503b
parentebfe432ec3064094faebe0913b2d98932d590bfd (diff)
output: emit node::destroy event
Now output_begin_destroy emits the node::destroy event similar to workspace_begin_destroy. It currently has no listeners, since they listen to output::disable or wlr_output::destroy instead.
-rw-r--r--sway/tree/output.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/tree/output.c b/sway/tree/output.c
index 8eefcee34..ad8d24821 100644
--- a/sway/tree/output.c
+++ b/sway/tree/output.c
@@ -286,6 +286,7 @@ void output_begin_destroy(struct sway_output *output) {
return;
}
sway_log(SWAY_DEBUG, "Destroying output '%s'", output->wlr_output->name);
+ wl_signal_emit(&output->node.events.destroy, &output->node);
output->node.destroying = true;
node_set_dirty(&output->node);