From f35e2b8bf0bed6d8c6d74a5cacbd99970af4e174 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Mon, 1 Feb 2016 16:01:18 -0800 Subject: [PATCH] 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). --- src/lib/edje/edje_util.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib/edje/edje_util.c b/src/lib/edje/edje_util.c index 4bb0e9c1e4..8dc51c361e 100644 --- a/src/lib/edje/edje_util.c +++ b/src/lib/edje/edje_util.c @@ -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;