discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=20a5b2bc1802f3a77dcfc2850887b78b42e0512d

commit 20a5b2bc1802f3a77dcfc2850887b78b42e0512d
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Mon Sep 8 09:11:56 2014 -0400

    fix nocomp skipping for skippable objects
    
    fix T753
---
 src/bin/e_comp.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c
index 584ed3a..4603ca4 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -97,6 +97,7 @@ _e_comp_visible_object_is(Evas_Object *obj, Evas_Coord x, 
Evas_Coord y, Evas_Coo
    Evas_Coord xx, yy, ww, hh;
 
    if ((!type) || (!e_util_strcmp(type, "e_comp_object"))) return EINA_FALSE;
+   if (evas_object_data_get(obj, "comp_skip")) return EINA_FALSE;
    evas_object_geometry_get(obj, &xx, &yy, &ww, &hh);
    if (E_INTERSECTS(x, y, w, h, xx, yy, ww, hh))
      {

-- 


Reply via email to