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 fe7527b3990009152ad2830e5bcdace01c732f36
parent ca3e62b166e00ae93a1ab4be7769e76722954b36
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Wed,  9 Mar 2022 20:02:06 +0100

do not attempt to send internal synth params to DAW

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

diff --git a/source/jucePlugin/VirusParameter.cpp b/source/jucePlugin/VirusParameter.cpp @@ -35,7 +35,7 @@ namespace Virus return; m_lastValue = newValue; - if (notifyHost) + if (notifyHost && getDescription().isPublic) { beginChangeGesture(); setValueNotifyingHost(convertTo0to1(static_cast<float>(newValue)));