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:
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>;