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 d45850bbf79ce33df6ba2a063d09fafb80f6c537
parent 03871d1a293870eb31df4d5c2723bf2a44912feb
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu,  6 Jun 2024 21:57:48 +0200

do not report play mode change to host as it isn't a public parameter

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

diff --git a/source/virusJucePlugin/VirusEditor.cpp b/source/virusJucePlugin/VirusEditor.cpp @@ -396,7 +396,7 @@ namespace genericVirusUI const auto playMode = getController().getParameterIndexByName(Virus::g_paramPlayMode); auto* param = getController().getParameter(playMode); - param->setUnnormalizedValueNotifyingHost(_playMode, pluginLib::Parameter::Origin::Ui); + param->setUnnormalizedValue(_playMode, pluginLib::Parameter::Origin::Ui); // we send this directly here as we request a new arrangement below, we don't want to wait on juce to inform the knob to have changed getController().sendParameterChange(*param, _playMode);