From 7aa6221a7fa1fae1d483fb6cbbe88a7020b31d80 Mon Sep 17 00:00:00 2001 From: seoz Date: Wed, 28 Mar 2012 06:23:18 +0000 Subject: [PATCH] [Genlist][Nabi:S1-2014] bug fix, expanded_next_item set to NULL in _item_del @69691 elm genlist: Fixed tree effect bug. Patch by Chanwook Jung On Wed, Mar 28, 2012 at 3:06 PM, chanwook jung wrote: > Dear all, > > I added one line to fix the bug at tree effect. If the item is equal to > expanded_next_item, expanded_next_item set to NULL in _item_del > > Thanks, > Joey git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@69691 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/elm_genlist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c index 8e00443..f51b824 100644 --- a/src/lib/elm_genlist.c +++ b/src/lib/elm_genlist.c @@ -887,6 +887,7 @@ _item_del(Elm_Gen_Item *it) it->wd->anchor_item = ELM_GEN_ITEM_FROM_INLIST(EINA_INLIST_GET(it)->prev); } if (it->wd->expanded_item == it) it->wd->expanded_item = NULL; + if (it->wd->expanded_next_item == it) it->wd->expanded_next_item = NULL; if (it->parent) it->parent->item->items = eina_list_remove(it->parent->item->items, it); if (it->item->swipe_timer) ecore_timer_del(it->item->swipe_timer); -- 2.7.4