From 19f48898a705f22b063036565ac5dd67f480fabe Mon Sep 17 00:00:00 2001 From: Lukas W Date: Mon, 18 Dec 2017 12:05:29 +0100 Subject: [PATCH] VST: Disable plugin reload on embed method change --- plugins/vestige/vestige.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/plugins/vestige/vestige.cpp b/plugins/vestige/vestige.cpp index 211b363a9..22cc804f2 100644 --- a/plugins/vestige/vestige.cpp +++ b/plugins/vestige/vestige.cpp @@ -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()