discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=8f39054965db77738ef7fc1b8437a36be376c1b4

commit 8f39054965db77738ef7fc1b8437a36be376c1b4
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Mon Dec 5 10:58:44 2016 -0500

    handle pass_event clients in e_comp_object_coords_inside_input_area
    
    fix T4966
---
 src/bin/e_comp_object.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c
index 2751dbd..580e3ec 100644
--- a/src/bin/e_comp_object.c
+++ b/src/bin/e_comp_object.c
@@ -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);
 }
 

-- 


Reply via email to