actor: Remove an has_allocation() check
authorEmmanuele Bassi <ebassi@linux.intel.com>
Fri, 16 Mar 2012 16:13:11 +0000 (16:13 +0000)
committerEmmanuele Bassi <ebassi@linux.intel.com>
Fri, 16 Mar 2012 16:13:11 +0000 (16:13 +0000)
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.

clutter/clutter-actor.c

index cfe0f63..5483d11 100644 (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;