VST: Disable plugin reload on embed method change

This commit is contained in:
Lukas W
2017-12-18 12:05:29 +01:00
parent 7ae348eb10
commit 19f48898a7

View File

@@ -177,10 +177,12 @@ void vestigeInstrument::setParameter( void )
void vestigeInstrument::handleConfigChange(QString cls, QString attr, QString value)
{
if ( cls == "ui" && attr == "vstembedmethod" )
{
reloadPlugin();
}
Q_UNUSED(cls); Q_UNUSED(attr); Q_UNUSED(value);
// Disabled for consistency with VST effects that don't implement this. (#3786)
// if ( cls == "ui" && attr == "vstembedmethod" )
// {
// reloadPlugin();
// }
}
void vestigeInstrument::reloadPlugin()