gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit bcc886d1cd60c24913d03c20fec3e84b91698c45
parent d8ab66cb746cd4c448009ef308ab24f01c168928
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sun,  9 Jun 2024 15:57:10 +0200

notify host about linked parameter changes

Diffstat:
Msource/jucePluginLib/parameterlink.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/jucePluginLib/parameterlink.cpp b/source/jucePluginLib/parameterlink.cpp @@ -32,7 +32,7 @@ namespace pluginLib return false; if(_applyCurrentSourceToTarget) - _target->setUnnormalizedValue(m_sourceValue, Parameter::Origin::Ui); + _target->setUnnormalizedValueNotifyingHost(m_sourceValue, Parameter::Origin::Ui); return true; }