2008-06-25 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/clutter-stage.c (clutter_stage_allocate): Fix condition;
	should always test before committing.
This commit is contained in:
Emmanuele Bassi 2008-06-25 12:08:49 +00:00
parent 6371f0c621
commit 09097fc810
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-06-25 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-stage.c (clutter_stage_allocate): Fix condition;
should always test before committing.
2008-06-25 Matthew Allum <mallum@openedhand.com> 2008-06-25 Matthew Allum <mallum@openedhand.com>
* clutter/x11/clutter-backend-x11.c: (_clutter_x11_register_xinput) * clutter/x11/clutter-backend-x11.c: (_clutter_x11_register_xinput)

View File

@ -164,7 +164,7 @@ clutter_stage_allocate (ClutterActor *self,
* then we simply ignore any allocation request and interrupt the * then we simply ignore any allocation request and interrupt the
* allocation chain here. * allocation chain here.
*/ */
if (clutter_feature_available (CLUTTER_FEATURE_STAGE_STATIC)) if (!clutter_feature_available (CLUTTER_FEATURE_STAGE_STATIC))
{ {
ClutterActorClass *klass; ClutterActorClass *klass;