this really needs a better solution since it results in a blank genlist
item space, with the item itself typically located somewhere offscreen due
to caching
(GL_IT(after)->type & ELM_GENLIST_ITEM_GROUP))
sd->group_items = eina_list_append_relative
(sd->group_items, it, after);
+ else if (GL_IT(it)->type & ELM_GENLIST_ITEM_GROUP)
+ CRI("GROUP ITEM INSERT FAILED: NON-GROUP ITEM PASSED AS 'after'!");
}
else
{
(GL_IT(before)->type & ELM_GENLIST_ITEM_GROUP))
sd->group_items =
eina_list_prepend_relative(sd->group_items, it, before);
+ else if (GL_IT(it)->type & ELM_GENLIST_ITEM_GROUP)
+ CRI("GROUP ITEM INSERT FAILED: NON-GROUP ITEM PASSED AS 'after'!");
}
else
{