From 8b001012c5e5ad07779c463b89af48391c851f48 Mon Sep 17 00:00:00 2001 From: George Reales Date: Tue, 21 Jul 2020 20:07:50 +0200 Subject: [PATCH] Update PluginProcessor.cpp --- Source/PluginProcessor.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp index 7351322..5b1f1f5 100755 --- a/Source/PluginProcessor.cpp +++ b/Source/PluginProcessor.cpp @@ -1020,7 +1020,9 @@ void ObxdAudioProcessor::parameterChanged (const String& parameter, float newVal if ( isPositiveAndBelow (index, PARAM_COUNT) ) { + isHostAutomatedChange = false; setEngineParameterValue (index, newValue); + isHostAutomatedChange = true; } }