actor: Check for mapped children in the default get_paint_volume()

Unmapped children won't be painted so they should not contribute to the
default paint volume computation.
This commit is contained in:
Emmanuele Bassi 2012-04-12 17:07:06 +01:00
parent 98c9dad42f
commit 119a25269e

View File

@ -5207,6 +5207,9 @@ clutter_actor_update_default_paint_volume (ClutterActor *self,
{
const ClutterPaintVolume *child_volume;
if (!CLUTTER_ACTOR_IS_MAPPED (child))
continue;
child_volume = clutter_actor_get_transformed_paint_volume (child, self);
if (child_volume == NULL)
{