mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
ClutterClone: Handle clone_source == NULL for get_paint_volume()
It's valid to have a ClutterClone without a clone source; in this case the paint volume is empty. http://bugzilla.clutter-project.org/show_bug.cgi?id=2360
This commit is contained in:
parent
e005892534
commit
8089af3c1b
@ -195,6 +195,10 @@ clutter_clone_get_paint_volume (ClutterActor *self,
|
||||
ClutterClonePrivate *priv = CLUTTER_CLONE (self)->priv;
|
||||
const ClutterPaintVolume *source_volume;
|
||||
|
||||
/* if the source is not set the paint volume is defined to be empty */
|
||||
if (priv->clone_source == NULL)
|
||||
return TRUE;
|
||||
|
||||
/* query the volume of the source actor and simply masquarade it as
|
||||
* the clones volume... */
|
||||
source_volume = clutter_actor_get_paint_volume (priv->clone_source);
|
||||
|
Loading…
Reference in New Issue
Block a user