Browse Source

GenericAudioProcessorEditor: Fix issue where the ChoiceParameterComponent would re-set the parameter value in response to a parameter value change

v7.0.9
reuk 2 years ago
parent
commit
ff534baf5f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_processors/processors/juce_GenericAudioProcessorEditor.cpp

+ 1
- 1
modules/juce_audio_processors/processors/juce_GenericAudioProcessorEditor.cpp View File

@@ -293,7 +293,7 @@ private:
index = roundToInt (getParameter().getValue() * (float) (parameterValues.size() - 1));
}
box.setSelectedItemIndex (index);
box.setSelectedItemIndex (index, dontSendNotification);
}
void boxChanged()


Loading…
Cancel
Save