Let's see if this edje forced recalc is really required.

SVN revision: 38689
This commit is contained in:
Gustavo Sverzut Barbieri 2009-01-21 22:38:52 +00:00
parent e22296968f
commit 7ed9777f3c
1 changed files with 4 additions and 1 deletions

View File

@ -1101,7 +1101,10 @@ edje_object_part_swallow(Evas_Object *obj, const char *part, Evas_Object *obj_sw
if ((!ed) || (!part)) return;
/* Need to recalc before providing the object. */
_edje_recalc_do(ed);
// XXX: I guess this is not required, removing for testing purposes
// XXX: uncomment if you see glitches in e17 or others.
// XXX: by Gustavo, January 21th 2009.
//_edje_recalc_do(ed);
rp = _edje_real_part_recursive_get(ed, (char *)part);
if (!rp) return;