edje object scale factor changes now trigger deferred recalcs

as with the previous commit, any user who wants geometry immediately
will be calling calc functions, so this is just going to be redundant
except in cases where calc is not wanted, in which case it is unnecessary
overhead
This commit is contained in:
Mike Blumenkrantz 2015-03-31 19:12:26 -04:00
parent 43779dfa6f
commit f534103c95
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ _edje_object_scale_set(Eo *obj, Edje *ed, double scale)
edje_object_scale_set(o, scale);
}
}
edje_object_calc_force(obj);
_edje_recalc(ed);
return EINA_TRUE;
}