evas/proxy - actually, I missed updating is_active of the object.

this commit is introduced by this b2070f8c39.
This commit is contained in:
ChunEon Park 2014-03-27 16:16:49 +09:00
parent 5f497750f6
commit b1dc908681
1 changed files with 7 additions and 1 deletions

View File

@ -409,7 +409,13 @@ _evas_render_phase1_object_process(Evas_Public_Data *e, Evas_Object *eo_obj,
evas_object_clip_recalc(obj);
if (src_changed) is_active = EINA_TRUE;
else is_active = evas_object_is_active(eo_obj, obj);
else
{
is_active = evas_object_is_active(eo_obj, obj);
src_changed = is_active;
}
obj->is_active = is_active;
RDI(level);
RD(" [--- PROCESS [%p", obj);
if (obj->name)