jaehwan pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=5097b0c42f703ffed8f4780a35973ee5e3158d76
commit 5097b0c42f703ffed8f4780a35973ee5e3158d76 Author: Jaehwan Kim <jae.hwan....@samsung.com> Date: Thu Dec 29 13:31:33 2016 +0900 reorder the calling expanded_set. Current genlist show or bring_in to the chilren items of last expanded item So sometimes the group content navigator bring_in to the last items. To fix this situation, reorder the calling expanded_set. As a result, the first expand item is called the last time. --- src/bin/ui/workspace/group_navigator.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/ui/workspace/group_navigator.c b/src/bin/ui/workspace/group_navigator.c index 5c800cc..818491d 100644 --- a/src/bin/ui/workspace/group_navigator.c +++ b/src/bin/ui/workspace/group_navigator.c @@ -2635,9 +2635,9 @@ group_navigator_add(Evas_Object *parent, Group2 *group) elm_object_disabled_set(pl->layout, true); else { - elm_genlist_item_expanded_set(pl->parts_caption_item, true); - elm_genlist_item_expanded_set(pl->programs_caption_item, true); elm_genlist_item_expanded_set(pl->data_caption_item, true); + elm_genlist_item_expanded_set(pl->programs_caption_item, true); + elm_genlist_item_expanded_set(pl->parts_caption_item, true); } evas_object_event_callback_add(pl->layout, EVAS_CALLBACK_DEL, _group_navigator_del, pl); --