From 504b9491f05d3227d45ea6bcc9c347e1a6bf9586 Mon Sep 17 00:00:00 2001 From: Kirill Primak Date: Wed, 19 Jul 2023 01:46:13 +0300 Subject: [PATCH] subcompositor: emit new_subsurface immediately See https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3608. --- types/wlr_subcompositor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/wlr_subcompositor.c b/types/wlr_subcompositor.c index c66d6f1d..f20d8042 100644 --- a/types/wlr_subcompositor.c +++ b/types/wlr_subcompositor.c @@ -289,8 +289,6 @@ void subsurface_handle_parent_commit(struct wlr_subsurface *subsurface) { if (!subsurface->added) { subsurface->added = true; - wl_signal_emit_mutable(&subsurface->parent->events.new_subsurface, - subsurface); subsurface_consider_map(subsurface); } } @@ -364,6 +362,8 @@ static void subcompositor_handle_get_subsurface(struct wl_client *client, wl_list_init(&subsurface->current.link); wl_list_insert(parent->pending.subsurfaces_above.prev, &subsurface->pending.link); + + wl_signal_emit_mutable(&subsurface->parent->events.new_subsurface, subsurface); } static const struct wl_subcompositor_interface subcompositor_impl = {