diff --git a/ChangeLog b/ChangeLog index 2852dc44e..a5cfe61d9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,7 +3,9 @@ * include/ladspa_control_dialog.h: * src/core/ladspa_control_dialog.cpp: * src/widgets/ladspa_control.cpp: - added channel link selectors for individual ports + * src/widgets/rack_plugin.cpp: + - added channel link selectors for individual ports + - don't show control edit button for plugins with no controls 2006-08-16 Erwin Goossen diff --git a/src/widgets/rack_plugin.cpp b/src/widgets/rack_plugin.cpp index 8f3269e61..54d4f86bb 100644 --- a/src/widgets/rack_plugin.cpp +++ b/src/widgets/rack_plugin.cpp @@ -197,6 +197,11 @@ rackPlugin::rackPlugin( QWidget * _parent, this, SLOT( closeEffects() ) ); m_controlView->hide(); + if( m_controlView->getControlCount() == 0 ) + { + m_editButton->hide(); + } + #ifdef QT4 this->setWhatsThis( #else