mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-24 06:59:45 -05:00
Revert "subcompositor: emit new_subsurface immediately"
new_subsurface emitted immediately isn't actually that useful. Revert the change
and document that this event is special.
This reverts commit 504b9491f0.
This commit is contained in:
parent
36cc698bc5
commit
87346b3393
2 changed files with 8 additions and 3 deletions
|
|
@ -289,6 +289,8 @@ 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);
|
||||
}
|
||||
}
|
||||
|
|
@ -362,8 +364,6 @@ 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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue