diff --git a/ChangeLog b/ChangeLog index a5cfe61d9..8e4a5029c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,9 @@ 2006-08-16 Danny McRae + * src/widgets/automatable_button.cpp: + remove toggled signal sent from method toggle--it's also sent + from setValue, and the double signal was wreaking havoc with + the channel linkings + * include/ladspa_control.h: * include/ladspa_control_dialog.h: * src/core/ladspa_control_dialog.cpp: diff --git a/src/widgets/automatable_button.cpp b/src/widgets/automatable_button.cpp index f13daec00..d32bdf0ac 100644 --- a/src/widgets/automatable_button.cpp +++ b/src/widgets/automatable_button.cpp @@ -180,7 +180,6 @@ void automatableButton::toggle( void ) { setValue( !value() ); update(); - emit( toggled( value() ) ); } }