mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
AudioProcessorValueTreeState: Add default values for Parameter constructor arguments
These were mistakenly removed in afe5199848
This commit is contained in:
parent
970483b1cd
commit
e6b6bc2cfc
1 changed files with 5 additions and 5 deletions
|
|
@ -488,11 +488,11 @@ public:
|
|||
float defaultParameterValue,
|
||||
std::function<String (float)> valueToTextFunction,
|
||||
std::function<float (const String&)> textToValueFunction,
|
||||
bool isMetaParameter,
|
||||
bool isAutomatableParameter,
|
||||
bool isDiscrete,
|
||||
AudioProcessorParameter::Category parameterCategory,
|
||||
bool isBoolean)
|
||||
bool isMetaParameter = false,
|
||||
bool isAutomatableParameter = true,
|
||||
bool isDiscrete = false,
|
||||
AudioProcessorParameter::Category parameterCategory = AudioProcessorParameter::genericParameter,
|
||||
bool isBoolean = false)
|
||||
: Parameter (parameterID,
|
||||
parameterName,
|
||||
valueRange,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue