evas: Fix hold events

This fixes a crash with thumbscroll.

Fixes https://phab.enlightenment.org/T4378
This commit is contained in:
Jean-Philippe Andre 2016-08-17 14:37:50 +09:00
parent 6d6e41c5c9
commit 49037bc7e9
1 changed files with 2 additions and 0 deletions

View File

@ -119,6 +119,8 @@ _efl_event_desc_get(Evas_Callback_Type type)
return EFL_EVENT_KEY_DOWN;
case EVAS_CALLBACK_KEY_UP:
return EFL_EVENT_KEY_UP;
case EVAS_CALLBACK_HOLD:
return EFL_EVENT_HOLD;
default:
return NULL;
}