evas/render: don't make children active unless the active object has the proxies.

the src change sholud be true only if the object has any proxies.
otherwise, the children will be pushed in active objects unnecessarily.
This commit is contained in:
ChunEon Park 2014-09-01 19:45:19 +09:00
parent 7b219a9e99
commit 4cc893f0af
1 changed files with 1 additions and 1 deletions

View File

@ -421,7 +421,7 @@ _evas_render_phase1_object_process(Evas_Public_Data *e, Evas_Object *eo_obj,
else
{
is_active = evas_object_is_active(eo_obj, obj);
src_changed = is_active;
if (is_active && obj->proxy->proxies) src_changed = is_active;
}
obj->is_active = is_active;