discomfitor pushed a commit to branch enlightenment-0.19. http://git.enlightenment.org/core/enlightenment.git/commit/?id=2091ef60d8bb05063bfa0ee8441e07477192595b
commit 2091ef60d8bb05063bfa0ee8441e07477192595b 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 5026e08..79a6d57 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); } --
