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 c824d67963d49582c1e99698e10ba0f78e85800b
parent f0a1f267b2ae8ba96532c53246d1729a62949568
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Wed,  6 Nov 2024 04:48:44 +0100

fix combo boxes changing parameters to 0 if bound to parameter twice

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

diff --git a/source/jucePluginLib/parameterbinding.cpp b/source/jucePluginLib/parameterbinding.cpp @@ -123,7 +123,7 @@ namespace pluginLib _combo.setScrollWheelEnabled(true); _combo.onChange = nullptr; - _combo.clear(); + _combo.clear(juce::dontSendNotification); using Entry = std::pair<uint8_t, std::string>;