evas/object - no need to update events when source is invisible

SVN revision: 78881
This commit is contained in:
ChunEon Park 2012-11-03 13:20:01 +00:00
parent 2bdc89808c
commit 34fee5ae82
1 changed files with 1 additions and 1 deletions

View File

@ -814,7 +814,7 @@ _size_set(Eo *eo_obj, void *_pd, va_list *list)
pass = evas_event_passes_through(eo_obj, obj);
freeze = evas_event_freezes_through(eo_obj, obj);
source_invisible = evas_object_is_source_invisible(eo_obj, obj);
if ((!pass) && (!freeze))
if ((!pass) && (!freeze) && (!source_invisible))
was = evas_object_is_in_output_rect(eo_obj, obj,
obj->layer->evas->pointer.x,
obj->layer->evas->pointer.y, 1, 1);