edje: remove unecessary forced call to recalc all edje file.

This seems to be a fair improvement as it speeds up by 4% the shutdown
of application (and an overall benchmark used to track where genlist
spend its time).
This commit is contained in:
Cedric BAIL 2016-02-01 16:01:18 -08:00
parent bdd163fce8
commit f35e2b8bf0
1 changed files with 4 additions and 1 deletions

View File

@ -114,7 +114,10 @@ _edje_user_definition_free(Edje_User_Defined *eud)
#ifdef EDJE_CALC_CACHE
rp->invalidate = EINA_TRUE;
#endif
_edje_recalc_do(eud->ed);
/* this seems to be as unnecessary as the one in part_unswallow()
* cedric, 1 February 2016
*/
// _edje_recalc_do(eud->ed);
}
break;