fix enter key use on playlist

This commit is contained in:
zmike 2014-03-02 00:58:42 -05:00
parent 02fa5065ad
commit 89ab6969d0
1 changed files with 1 additions and 1 deletions

View File

@ -1098,7 +1098,7 @@ queue_list_key_down(void *data EINA_UNUSED, Evas *e EINA_UNUSED, Evas_Object *ob
Empd_Empc_Song *so;
Evas_Event_Key_Down *ev = event_info;
if ((!strcmp(ev->key, "Enter")) || (!strcmp(ev->key, "Return")))
if ((!strcmp(ev->key, "KP_Enter")) || (!strcmp(ev->key, "Return")))
{
it = elm_genlist_selected_item_get(obj);
if (!it) return;