dont call recalc if doing calc only

SVN revision: 66849
This commit is contained in:
Carsten Haitzler 2012-01-04 05:17:11 +00:00
parent 5abed5b823
commit ac8a671596
1 changed files with 2 additions and 1 deletions

View File

@ -460,7 +460,8 @@ _edje_recalc_do(Edje *ed)
ed->all_part_change = 0;
ed->text_part_change = 0;
#endif
evas_object_smart_callback_call(ed->obj, "recalc", NULL);
if (!ed->calc_only)
evas_object_smart_callback_call(ed->obj, "recalc", NULL);
}
void