ajwillia-ms pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=a52a53802aebf03d297aa857f0cb6a9779949a49
commit a52a53802aebf03d297aa857f0cb6a9779949a49 Author: Andy Williams <[email protected]> Date: Sun Sep 20 11:47:23 2015 +0100 [spinner] Notify when value is edited directly Previously an edit would trigger internal save but not notify until the up/down button was tapped. Now notify when value applied (unfocus). @fix --- src/lib/elm_spinner.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/elm_spinner.c b/src/lib/elm_spinner.c index 46533c3..19168c4 100644 --- a/src/lib/elm_spinner.c +++ b/src/lib/elm_spinner.c @@ -228,6 +228,8 @@ _val_set(Evas_Object *obj) pos = 1.0; edje_object_part_drag_value_set (wd->resize_obj, "elm.dragable.slider", pos, pos); + + eo_do(obj, eo_event_callback_call(ELM_SPINNER_EVENT_CHANGED, NULL)); } static void --
