AnalogTapeModel

Physical modelling signal processing for analog tape recording
Log | Files | Refs | Submodules | README | LICENSE

commit 220540c1cc39a7cbd6706339f8ab9574e9f00c51
parent b7f8c3804305ffd5d7f7d339e5f3ac38b23a0080
Author: jatinchowdhury18 <[email protected]>
Date:   Sun, 18 Apr 2021 11:07:33 -0700

Fix Mix Groups crash in VST3

Diffstat:
MPlugin/Source/MixGroups/MixGroupsSharedData.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Plugin/Source/MixGroups/MixGroupsSharedData.cpp b/Plugin/Source/MixGroups/MixGroupsSharedData.cpp @@ -55,7 +55,7 @@ void MixGroupsSharedData::copyPluginState (int mixGroup, AudioProcessorValueTree void MixGroupsSharedData::setParameter (const String& paramID, int mixGroup, float value, String uuid) { paramMaps[(size_t) mixGroup - 1]->set (paramID, value); - listeners.call (&Listener::mixGroupParamChanged, paramID, mixGroup, value, uuid); + MessageManager::callAsync ([=] { listeners.call (&Listener::mixGroupParamChanged, paramID, mixGroup, value, uuid); }); } float MixGroupsSharedData::getParameter (const String& paramID, int mixGroup) const