discomfitor pushed a commit to branch master.

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

commit 6644808159e5b450ccdda78ff6272e1fad102bda
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Fri Aug 11 18:43:15 2017 -0400

    elm_widget: do not reparent subobjs to top widget for non-elm objects
    
    this breaks handling of non-elm objects and makes it impossible to safely 
manage
    object lifetimes
    
    ref D3957
    ref 62cf70034de38b17f2025e08f81b5758b3d6d6e3
    
    @fix
---
 src/lib/elementary/elm_widget.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/lib/elementary/elm_widget.h b/src/lib/elementary/elm_widget.h
index 86d5b6f4a5..9fc2cbe846 100644
--- a/src/lib/elementary/elm_widget.h
+++ b/src/lib/elementary/elm_widget.h
@@ -846,7 +846,8 @@ static inline Eina_Bool
 _elm_widget_sub_object_redirect_to_top(Evas_Object *obj, Evas_Object *sobj)
 {
    Eina_Bool ret = elm_widget_sub_object_del(obj, sobj);
-   if (ret)
+   if (!ret) return ret;
+   if (elm_widget_is(sobj))
      ret = elm_widget_sub_object_add(elm_widget_top_get(obj), sobj);
 
    return ret;

-- 


Reply via email to