summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2017-08-11 18:43:15 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2017-08-11 18:43:13 -0400
commit6644808159e5b450ccdda78ff6272e1fad102bda (patch)
treeb2bb1440fd79f7c1d07fa8ebd6ba177a348abf52
parent60449b48dc0a8011baea66302ae210eb8b397f3b (diff)
downloadefl-6644808159e5b450ccdda78ff6272e1fad102bda.tar.gz
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
-rw-r--r--src/lib/elementary/elm_widget.h3
1 files changed, 2 insertions, 1 deletions
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;