herdsman pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=0334cb194ca4e35d9b53a485884902786cb3135e
commit 0334cb194ca4e35d9b53a485884902786cb3135e Author: Daniel Hirt <[email protected]> Date: Thu Jul 9 14:25:38 2015 +0300 Elm Entry: Fix context menu dismissal The wrong event was used during the port from smart callbacks to eo callbacks. Now the correct ELM_HOVERSEL_EVENT_DISMISSED event is used. --- src/lib/elm_entry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index 5e2cad3..959a636 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -1564,7 +1564,7 @@ _menu_call(Evas_Object *obj) if (top) elm_hoversel_hover_parent_set(sd->hoversel, top); eo_do(sd->hoversel, eo_event_callback_add - (ELM_HOVER_EVENT_DISMISSED, _hover_dismissed_cb, obj)); + (ELM_HOVERSEL_EVENT_DISMISSED, _hover_dismissed_cb, obj)); if (sd->have_selection) { if (!sd->password) --
