diff --git a/src/gui/EffectSelectDialog.cpp b/src/gui/EffectSelectDialog.cpp index 0208411f6..addefbb2e 100644 --- a/src/gui/EffectSelectDialog.cpp +++ b/src/gui/EffectSelectDialog.cpp @@ -215,18 +215,6 @@ void EffectSelectDialog::rowChanged( const QModelIndex & _idx, textWidgetLayout->setMargin( 4 ); textWidgetLayout->setSpacing( 0 ); - std::string stdName(descriptor.name); - if ( stdName != "ladspaeffect" ) - { - QLabel *label = new QLabel(m_descriptionWidget); - QString labelText = "

" + tr("Name") + ": " + QString::fromUtf8(descriptor.displayName) + "

"; - labelText += "

" + tr("Description") + ": " + qApp->translate( "pluginBrowser", descriptor.description ) + "

"; - labelText += "

" + tr("Author") + ": " + QString::fromUtf8(descriptor.author) + "

"; - - label->setText(labelText); - textWidgetLayout->addWidget(label); - } - if ( m_currentSelection.desc->subPluginFeatures ) { QWidget *subWidget = new QWidget(textualInfoWidget); @@ -245,6 +233,16 @@ void EffectSelectDialog::rowChanged( const QModelIndex & _idx, textWidgetLayout->addWidget(subWidget); } + else + { + QLabel *label = new QLabel(m_descriptionWidget); + QString labelText = "

" + tr("Name") + ": " + QString::fromUtf8(descriptor.displayName) + "

"; + labelText += "

" + tr("Description") + ": " + qApp->translate( "pluginBrowser", descriptor.description ) + "

"; + labelText += "

" + tr("Author") + ": " + QString::fromUtf8(descriptor.author) + "

"; + + label->setText(labelText); + textWidgetLayout->addWidget(label); + } ui->scrollArea->setWidget( m_descriptionWidget ); m_descriptionWidget->show();