diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index b6999ca7a..2751dbd0a 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -3162,7 +3162,7 @@ e_comp_object_coords_inside_input_area(Evas_Object *obj, int x, int y) API_ENTRY EINA_FALSE; if (cw->input_obj) - return E_INSIDE(x, y, cw->input_rect.x, cw->input_rect.y, cw->input_rect.w, cw->input_rect.h); + 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); return E_INSIDE(x, y, cw->ec->x, cw->ec->y, cw->ec->w, cw->ec->h); }