Chase wlroots: children are now only availabe in tree nodes

Chases wlroots 71f8a48d380701de1e3331d53d470bd76f5f643b
wlr_scene: Move children list from wlr_scene_node to wlr_scene_tree
This commit is contained in:
Consolatis 2022-06-05 17:12:55 +02:00 committed by Johan Malm
parent 08518513cc
commit efd9155513
6 changed files with 30 additions and 7 deletions

View file

@ -96,7 +96,7 @@ static void
destroy_osd_nodes(struct output *output)
{
struct wlr_scene_node *child, *next;
struct wl_list *children = &output->osd_tree->node.children;
struct wl_list *children = &output->osd_tree->children;
wl_list_for_each_safe(child, next, children, link) {
wlr_scene_node_destroy(child);
}