mirror of
https://github.com/swaywm/sway.git
synced 2026-04-25 06:46:24 -04:00
follow wlroots 3879: Nuke buffer output_enter / output_leave
This commit is contained in:
parent
c57daaf0d1
commit
e22f3f94c1
1 changed files with 2 additions and 2 deletions
|
|
@ -137,10 +137,10 @@ struct sway_container *container_create(struct sway_view *view) {
|
||||||
|
|
||||||
if (!failed) {
|
if (!failed) {
|
||||||
c->output_enter.notify = handle_output_enter;
|
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_enter);
|
||||||
c->output_leave.notify = handle_output_leave;
|
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_leave);
|
||||||
c->output_handler_destroy.notify = handle_destroy;
|
c->output_handler_destroy.notify = handle_destroy;
|
||||||
wl_signal_add(&c->output_handler->node.events.destroy,
|
wl_signal_add(&c->output_handler->node.events.destroy,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue