in current code, when a list item is selected, "selected" callback is called first
and then focus is set to the item. this is a problem if another widget, popup for instance,
is created on top of the list in the callback function. in such a case, the popup should
get focused (not the list item). this patch fixes it by changing the order.
@fix
}
}
_item_highlight(item);
- _item_select(item);
elm_object_item_focus_set((Elm_Object_Item *)item, EINA_TRUE);
+ _item_select(item);
}
else
{