hermet pushed a commit to branch elementary-1.14. http://git.enlightenment.org/core/elementary.git/commit/?id=da24b276958afc7b46b2e3f01d4a5a901da6e251
commit da24b276958afc7b46b2e3f01d4a5a901da6e251 Author: woochan lee <[email protected]> Date: Thu May 28 20:39:32 2015 +0900 Spinner: Add changed callback call when spinner value set. Summary: There is a code to compare value is changed. 1256: if (sd->val == val) return; Even value changed the value changed callback didn't called before. Reviewers: woohyun, shilpasingh, Hermet Reviewed By: shilpasingh, Hermet Differential Revision: https://phab.enlightenment.org/D2560 --- src/lib/elm_spinner.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/elm_spinner.c b/src/lib/elm_spinner.c index 2262e77..3c96aeb 100644 --- a/src/lib/elm_spinner.c +++ b/src/lib/elm_spinner.c @@ -1266,6 +1266,7 @@ _elm_spinner_value_set(Eo *obj, Elm_Spinner_Data *sd, double val) } _val_set(obj); _label_write(obj); + evas_object_smart_callback_call(obj, SIG_CHANGED, NULL); } EOLIAN static double --
