edje: remove recalc during part_recursive_get

Summary:
this adds perf overhead in order to work around a bug in text_get

all part objects are instantiated during edje_object_file_set, and forcing
a recalc here does nothing more than perform unnecessary operations

ref 8f95b17f39
ref D6365

Reviewers: herdsman, devilhorns

Reviewed By: devilhorns

Subscribers: cedric, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D6422
This commit is contained in:
Mike Blumenkrantz 2018-06-25 15:11:00 -04:00 committed by Chris Michael
parent b3b104a1e7
commit 6839003510
1 changed files with 0 additions and 2 deletions

View File

@ -5218,8 +5218,6 @@ _edje_real_part_recursive_get(Edje **ed, const char *part)
path = eina_str_split(part, EDJE_PART_PATH_SEPARATOR_STRING, 0);
if (!path) return NULL;
_edje_recalc_do(*ed);
rp = _edje_real_part_recursive_get_helper(ed, path);
free(*path);