diff --git a/ChangeLog b/ChangeLog index 54dbc97b1..eb876fb4d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-06-25 Emmanuele Bassi + + * clutter/clutter-stage.c (clutter_stage_allocate): Fix condition; + should always test before committing. + 2008-06-25 Matthew Allum * clutter/x11/clutter-backend-x11.c: (_clutter_x11_register_xinput) diff --git a/clutter/clutter-stage.c b/clutter/clutter-stage.c index 5978377be..1513bb795 100644 --- a/clutter/clutter-stage.c +++ b/clutter/clutter-stage.c @@ -164,7 +164,7 @@ clutter_stage_allocate (ClutterActor *self, * then we simply ignore any allocation request and interrupt the * allocation chain here. */ - if (clutter_feature_available (CLUTTER_FEATURE_STAGE_STATIC)) + if (!clutter_feature_available (CLUTTER_FEATURE_STAGE_STATIC)) { ClutterActorClass *klass;