From e22f3f94c1db134eaea06c22fb2c6317a580a577 Mon Sep 17 00:00:00 2001 From: GreyXor Date: Fri, 13 Mar 2026 19:11:27 +0100 Subject: [PATCH] follow wlroots 3879: Nuke buffer output_enter / output_leave --- sway/tree/container.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sway/tree/container.c b/sway/tree/container.c index c9ec852fc..4730a897d 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -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,