[tests] Verify that Clone can paint hidden sources

With the change in commit 87e4e2 painting of hidden source actors
in ClutterClone was fixed. This commit changes the test-actor-clone
to visually verify this.
This commit is contained in:
Emmanuele Bassi 2009-05-01 12:42:37 +01:00
parent 71473466fa
commit d7a1a168ba

View File

@ -215,6 +215,11 @@ test_actor_clone_main (int argc, char *argv[])
clutter_container_add_actor (CLUTTER_CONTAINER (tmp), real_hand);
clutter_container_add_actor (CLUTTER_CONTAINER (stage), tmp);
/* now hide the group so that we can verify that hidden source actors
* still get painted by the Clone
*/
clutter_actor_hide (real_hand);
/* create a new group to hold multiple actors in a group */
oh->group = clutter_group_new();