From f87d8cc5c519042bd138bdc96da1555cad28132f Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Tue, 18 Jan 2011 23:52:47 +0900 Subject: [PATCH] [elm_genlist.c] Fixed elm_genlist_edit_selected_items_get() issue. + This was caused by group index implementation changes. --- src/lib/elm_genlist.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c index 273e258..62dda54 100644 --- a/src/lib/elm_genlist.c +++ b/src/lib/elm_genlist.c @@ -6037,6 +6037,8 @@ elm_genlist_edit_selected_items_get(const Evas_Object *obj) EINA_LIST_FOREACH(itb->items, l, it) { + if (it->flags & ELM_GENLIST_ITEM_GROUP) + continue; if (it->delete_check) list = eina_list_append(list, it); } -- 2.7.4