hermet pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=8278dff6a742c391f7c04c3de1033574d818dbb6

commit 8278dff6a742c391f7c04c3de1033574d818dbb6
Author: woochan lee <wc0917....@samsung.com>
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 9624380..b306e87 100644
--- a/src/lib/elm_spinner.c
+++ b/src/lib/elm_spinner.c
@@ -1268,6 +1268,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

-- 


Reply via email to