rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=e5d927a9c27b2fee347fcce09d8278927a148ce4
commit e5d927a9c27b2fee347fcce09d8278927a148ce4 Author: Andrii Kroitor <an.kroi...@samsung.com> Date: Mon Jul 11 12:29:57 2016 +0300 shortcuts: don't disable enter shortcuts if entry is active --- src/bin/ui/shortcuts/shortcuts.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/ui/shortcuts/shortcuts.c b/src/bin/ui/shortcuts/shortcuts.c index d508626..cdb178d 100644 --- a/src/bin/ui/shortcuts/shortcuts.c +++ b/src/bin/ui/shortcuts/shortcuts.c @@ -269,6 +269,8 @@ _key_press_event_cb(void *data __UNUSED__, int type __UNUSED__, void *event) (sc.keycode <= 76 /*F10*/)) || (sc.keycode == 95 /*F11*/) || (sc.keycode == 96 /*F12*/) || + (sc.keycode == 36 /*ENTER*/) || + (sc.keycode == 104 /*KP_ENTER*/) || (sc.keycode == 9 /*ESC*/)) ) && /* elm_entry is in focus */ (!strcmp("elm_entry", evas_object_type_get(elm_object_focused_object_get(ap.win))))) --