This sounds like a regression bug fix. But it's a shame that commit message is too short to explain that situtation. It would be better if you mentioned how the previous patch caused the bug and how this patch resolved it.
-----Original Message----- From: "Andrii Kroitor"<[email protected]> To: <[email protected]>; Cc: Sent: 2016-11-17 (목) 22:58:33 Subject: [EGIT] [core/efl] master 01/01: elm_spinner: apply value after pressing enter key lorddrew pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=ef55640d2ac06ddcb74b582eff32a38bad89e566 commit ef55640d2ac06ddcb74b582eff32a38bad89e566 Author: Andrii Kroitor <[email protected]> Date: Thu Nov 17 15:45:08 2016 +0200 elm_spinner: apply value after pressing enter key This was broken previously by a659fe3484d3631c3d451299e5181789cecc5e00 @fix --- src/lib/elementary/elm_spinner.c 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/elementary/elm_spinner.c b/src/lib/elementary/elm_spinner.c index 78b12e6..6b8e4a2 100644 --- a/src/lib/elementary/elm_spinner.c +++ b/src/lib/elementary/elm_spinner.c @@ -608,6 +608,8 @@ _toggle_entry(Evas_Object *obj) elm_entry_markup_filter_append(sd->ent, _min_max_validity_filter, obj); efl_event_callback_add (sd->ent, ELM_WIDGET_EVENT_UNFOCUSED, _entry_unfocused_cb, obj); + efl_event_callback_add + (sd->ent, ELM_ENTRY_EVENT_ACTIVATED, _entry_unfocused_cb, obj); } if (!sd->button_layout) { -- ------------------------------------------------------------------------------ _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
