genlist: Fix another issue with insert sorted

Fixes T5274

@fix
This commit is contained in:
Jean-Philippe Andre 2017-03-20 22:24:41 +09:00
parent bcb8a7e8b8
commit 76b5749ea0
1 changed files with 3 additions and 2 deletions

View File

@ -6500,9 +6500,10 @@ _elm_genlist_item_sorted_insert(Eo *obj, Elm_Genlist_Data *sd, const Elm_Genlist
{
it->parent->item->items = eina_list_append_relative_list
(it->parent->item->items, eo_it, l);
if (rel->item->items && rel->item->expanded)
if (rel->item->items)
{
eo_rel = eina_list_last_data_get(rel->item->items);
Eina_List *ll = _list_last_recursive(rel->item->items);
eo_rel = ll->data;
rel = efl_data_scope_get(eo_rel, ELM_GENLIST_ITEM_CLASS);
}
sd->items = eina_inlist_append_relative