2006-09-25 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
authorMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Mon, 25 Sep 2006 14:05:38 +0000 (14:05 +0000)
committerMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Mon, 25 Sep 2006 14:05:38 +0000 (14:05 +0000)
* hildon-widgets/hildon-number-editor.c: Applying a patch by Fernando
Herrera to fix the number editor notification signals. Fixes MB#625.

ChangeLog
hildon-widgets/hildon-number-editor.c

index 38711b1..c6cd32e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-09-25  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
+
+       * hildon-widgets/hildon-number-editor.c: Applying a patch by Fernando
+       Herrera to fix the number editor notification signals. Fixes MB#625. 
+
 2006-09-22  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
        
        [0.14.4-1 release]
index c42aafb..b87893f 100644 (file)
@@ -522,6 +522,7 @@ change_numbers (HildonNumberEditor *editor, gint update)
        done in "changed" callback allows intermediate values */
     hildon_number_editor_real_set_value(priv, current_value + update);
     hildon_number_editor_validate_value(editor, FALSE);
+    g_object_notify (G_OBJECT(editor), "value");
 }
 
 static void
@@ -626,6 +627,7 @@ hildon_number_editor_entry_changed(GtkWidget *widget, gpointer data)
 {
     g_assert(HILDON_IS_NUMBER_EDITOR(data));
     hildon_number_editor_validate_value(HILDON_NUMBER_EDITOR(data), TRUE);
+    g_object_notify (G_OBJECT(data), "value");
 }
 
 static void