This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
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
b9cc72b167
commit
ff534baf5f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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()
Write
Preview
Loading…
Cancel
Save