diff --git a/modules/juce_audio_plugin_client/Unity/juce_Unity_Wrapper.cpp b/modules/juce_audio_plugin_client/Unity/juce_Unity_Wrapper.cpp index a079308d28..04e8b1812b 100644 --- a/modules/juce_audio_plugin_client/Unity/juce_Unity_Wrapper.cpp +++ b/modules/juce_audio_plugin_client/Unity/juce_Unity_Wrapper.cpp @@ -409,7 +409,7 @@ public: definition.parameterDefintions = parametersPtr.get(); } - void setParameter (int index, float value) { juceParameters.getParamForIndex (index)->setValue (value); } + void setParameter (int index, float value) { juceParameters.getParamForIndex (index)->setValueNotifyingHost (value); } float getParameter (int index) const noexcept { return juceParameters.getParamForIndex (index)->getValue(); } String getParameterString (int index) const noexcept