evas: prevent infinite insertion of object during recalc stage.
authorCedric BAIL <cedric.bail@free.fr>
Thu, 7 Jul 2011 15:24:16 +0000 (15:24 +0000)
committerCedric BAIL <cedric.bail@free.fr>
Thu, 7 Jul 2011 15:24:16 +0000 (15:24 +0000)
SVN revision: 61123

legacy/evas/src/lib/canvas/evas_object_smart.c

index e1e8cf0..9058e91 100644 (file)
@@ -578,8 +578,8 @@ evas_object_smart_calculate(Evas_Object *obj)
    if (!obj->smart.smart->smart_class->calculate)
      return;
 
-   o->need_recalculate = 0;
    obj->smart.smart->smart_class->calculate(obj);
+   o->need_recalculate = 0;
 }
 
 EAPI void
@@ -619,8 +619,8 @@ evas_call_smarts_calculate(Evas *e)
         o = obj->object_data;
         if (o->need_recalculate)
           {
-             o->need_recalculate = 0;
              obj->smart.smart->smart_class->calculate(obj);
+             o->need_recalculate = 0;
           }
      }
    in_smart_calc--;