1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

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

This commit is contained in:
reuk 2023-01-27 22:29:08 +00:00
parent b9cc72b167
commit ff534baf5f

View file

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