follow wlroots 3879: Nuke buffer output_enter / output_leave

This commit is contained in:
GreyXor 2026-03-13 19:11:27 +01:00
parent c57daaf0d1
commit e22f3f94c1
No known key found for this signature in database

View file

@ -137,10 +137,10 @@ struct sway_container *container_create(struct sway_view *view) {
if (!failed) {
c->output_enter.notify = handle_output_enter;
wl_signal_add(&c->output_handler->events.output_enter,
wl_signal_add(&c->output_handler->events.outputs_update,
&c->output_enter);
c->output_leave.notify = handle_output_leave;
wl_signal_add(&c->output_handler->events.output_leave,
wl_signal_add(&c->output_handler->events.outputs_update,
&c->output_leave);
c->output_handler_destroy.notify = handle_destroy;
wl_signal_add(&c->output_handler->node.events.destroy,