elm genlist: Fixed tree effect bug. Patch by Chanwook Jung

<jchanwook@gmail.com>

On Wed, Mar 28, 2012 at 3:06 PM, chanwook jung <jchanwook@gmail.com>
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

SVN revision: 69691
This commit is contained in:
Daniel Juyung Seo 2012-03-28 06:23:18 +00:00
parent 7a4ed3f94f
commit 09e15ebe04
1 changed files with 1 additions and 0 deletions

View File

@ -862,6 +862,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);