edje: remove recalc when unswallowing objects

I can't test this as thoroughly as I'd like due to ref T2272, but
it appears that this calc was also unnecessary
This commit is contained in:
Mike Blumenkrantz 2015-04-06 12:56:58 -04:00
parent 42b46ca915
commit 052d27c9f1
1 changed files with 4 additions and 1 deletions

View File

@ -3030,7 +3030,10 @@ _edje_object_part_unswallow(Eo *obj EINA_UNUSED, Edje *ed, Evas_Object *obj_swal
#ifdef EDJE_CALC_CACHE
rp->invalidate = EINA_TRUE;
#endif
_edje_recalc_do(ed);
/* this seems to be as unnecessary as the calc in part_swallow()
* -zmike, 6 April 2015
*/
//_edje_recalc_do(ed);
return;
}
}