I was wondering why a call to clutter_actor_show_all() on a ClutterGroup
does not recurse down the tree calling show_all() on all of its
children?

>From clutter-group.c:

        static void
        clutter_group_real_show_all (ClutterActor *actor)
        {
          clutter_container_foreach (CLUTTER_CONTAINER (actor),
                                     CLUTTER_CALLBACK
        (clutter_actor_show),
                                     NULL);
          clutter_actor_show (actor);
        }

I would have thought it would have been correct to call
clutter_actor_show_all() on each of the children as well.

-- 
Danielle Madeley

Collabora Ltd., Melbourne, Australia
http://www.collabora.co.uk/

-- 
To unsubscribe send a mail to [email protected]

Reply via email to