diff --git a/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp b/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp index 6b16c4aea4..233857aef1 100644 --- a/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp +++ b/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp @@ -2802,7 +2802,7 @@ public: auto value = static_cast (program) / static_cast (jmax (1, programNames.size() - 1)); if (auto* param = getParameterForID (programParameterID)) - param->setValue ((float) value); + param->setValueNotifyingHost ((float) value); } }