discomfitor pushed a commit to branch efl-1.16.

http://git.enlightenment.org/core/efl.git/commit/?id=c59b0f680f9bf57ee8d3b6766d86f55b46eabc3b

commit c59b0f680f9bf57ee8d3b6766d86f55b46eabc3b
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Tue Dec 15 17:16:26 2015 -0500

    evas: do not add unclipped smart members to the master clip
    
    this is probably a pretty unlikely scenario, but messing with smart
    members in this way is probably not a great idea
    
    @fix
---
 src/lib/evas/canvas/evas_render.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/evas/canvas/evas_render.c 
b/src/lib/evas/canvas/evas_render.c
index bdac680..ae5c77b 100644
--- a/src/lib/evas/canvas/evas_render.c
+++ b/src/lib/evas/canvas/evas_render.c
@@ -2527,7 +2527,7 @@ evas_render_updates_internal(Evas *eo_e,
              if (!eina_rectangles_intersect(&clip_rect, &obj_rect))
                continue;
 
-             if (!evas_object_clip_get(obj->object))
+             if ((!evas_object_clip_get(obj->object)) && (!obj->smart.parent))
                {
                   /* clip this object to the master clip */
                   evas_object_clip_set(obj->object, e->framespace.clip);

-- 


Reply via email to