@@ -50,7 +50,7 @@ var PrefsWidget = new GObject.Class({
5050 _bindEnumeration : function ( setting ) {
5151 let widget = this . _getWidget ( setting ) ;
5252 widget . set_active ( this . _settings . get_enum ( setting ) ) ;
53- widget . connect ( 'changed' , ( combobox ) => {
53+ widget . connect ( 'value- changed' , ( combobox ) => {
5454 this . _settings . set_enum ( setting , combobox . get_active ( ) ) ;
5555 } ) ;
5656 } ,
@@ -69,7 +69,7 @@ var PrefsWidget = new GObject.Class({
6969 _bindIntSpin : function ( setting ) {
7070 let widget = this . _getWidget ( setting ) ;
7171 widget . set_value ( this . _settings . get_int ( setting ) ) ;
72- widget . connect ( 'changed' , ( spin ) => {
72+ widget . connect ( 'value- changed' , ( spin ) => {
7373 this . _settings . set_int ( setting , spin . get_value ( ) ) ;
7474 } ) ;
7575 } ,
@@ -87,7 +87,7 @@ var PrefsWidget = new GObject.Class({
8787 _bindDblSpin : function ( setting ) {
8888 let widget = this . _getWidget ( setting ) ;
8989 widget . set_value ( this . _settings . get_double ( setting ) ) ;
90- widget . connect ( 'changed' , ( spin ) => {
90+ widget . connect ( 'value- changed' , ( spin ) => {
9191 this . _settings . set_double ( setting , spin . get_value ( ) ) ;
9292 } ) ;
9393 } ,
0 commit comments