discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=a3c6b7ada48cdae0c8d8b789078f7889461c790e
commit a3c6b7ada48cdae0c8d8b789078f7889461c790e Author: Mike Blumenkrantz <[email protected]> Date: Thu Apr 9 14:07:37 2015 -0400 always lower e_layout children upon packing fixes issues where a new child added would appear above other child objects if the new child was meant to be stacked below other children mostly noticeable in deskmirror --- src/bin/e_layout.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_layout.c b/src/bin/e_layout.c index 7820a96..51e7119 100644 --- a/src/bin/e_layout.c +++ b/src/bin/e_layout.c @@ -138,6 +138,7 @@ e_layout_pack(Evas_Object *obj, Evas_Object *child) sd = evas_object_smart_data_get(obj); li = _e_layout_smart_adopt(sd, child); sd->items = eina_inlist_append(sd->items, EINA_INLIST_GET(li)); + evas_object_lower(child); if (sd->frozen <= 0) _e_layout_smart_move_resize_item(li); } --
