eunue pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=0debdcf1ca166da1c083765bdb1542183fe96427
commit 0debdcf1ca166da1c083765bdb1542183fe96427 Author: Jaeun Choi <[email protected]> Date: Tue Feb 10 20:29:47 2015 +0900 gengrid: call "selected" callback on entey key input --- src/lib/elm_gengrid.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/elm_gengrid.c b/src/lib/elm_gengrid.c index 3396211..022e104 100644 --- a/src/lib/elm_gengrid.c +++ b/src/lib/elm_gengrid.c @@ -2970,6 +2970,7 @@ _key_action_select(Evas_Object *obj, const char *params EINA_UNUSED) { eo_it = elm_object_focused_item_get(obj); ELM_GENGRID_ITEM_DATA_GET(eo_it, it); + evas_object_smart_callback_call(WIDGET(it), SIG_SELECTED, eo_it); evas_object_smart_callback_call(WIDGET(it), SIG_ACTIVATED, eo_it); return EINA_TRUE; } --
