--- qsampler/trunk/src/qsamplerChannelForm.cpp 2007/11/21 18:37:40 1505 +++ qsampler/trunk/src/qsamplerChannelForm.cpp 2007/11/21 19:57:18 1506 @@ -763,7 +763,10 @@ // Stabilize current form state. void ChannelForm::stabilizeForm (void) { - bool bValid = true; + const bool bValid = + ui.EngineNameComboBox->currentIndex() >= 0 && + ui.EngineNameComboBox->currentText() != + qsamplerChannel::noEngineName(); #if 0 const QString& sPath = InstrumentFileComboBox->currentText(); bValid = bValid && !sPath.isEmpty() && QFileInfo(sPath).exists();