handle pass_event clients in e_comp_object_coords_inside_input_area

fix T4966
This commit is contained in:
Mike Blumenkrantz 2016-12-05 10:58:44 -05:00
parent ca7c77d05e
commit 8f39054965
1 changed files with 1 additions and 0 deletions

View File

@ -3163,6 +3163,7 @@ e_comp_object_coords_inside_input_area(Evas_Object *obj, int x, int y)
if (cw->input_obj)
return E_INSIDE(x, y, cw->x + cw->input_rect.x, cw->y + cw->input_rect.y, cw->input_rect.w, cw->input_rect.h);
if (evas_object_pass_events_get(obj)) return EINA_FALSE;
return E_INSIDE(x, y, cw->ec->x, cw->ec->y, cw->ec->w, cw->ec->h);
}