actor: Remove an has_allocation() check

The get_content_box() method should always succeed; if the actor does
not have an allocation, we are just going to return a 0-box.
This commit is contained in:
Emmanuele Bassi 2012-03-16 16:13:11 +00:00
parent de32ba1ddf
commit a7714e294e

View File

@ -17655,9 +17655,6 @@ clutter_actor_get_content_box (ClutterActor *self,
priv = self->priv;
if (!clutter_actor_has_allocation (self))
return;
box->x1 = 0.f;
box->y1 = 0.f;
box->x2 = priv->allocation.x2 - priv->allocation.x1;