mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
This commit is contained in:
parent
3e80bbbe4c
commit
8cd120aead
1 changed files with 5 additions and 2 deletions
|
|
@ -922,7 +922,7 @@ private:
|
|||
return floatToLong (String (valueString).getFloatValue());
|
||||
}
|
||||
|
||||
Cmn_Bool IsKeyValid(long key) const { return true; }
|
||||
Cmn_Bool IsKeyValid (long key) const { return true; }
|
||||
|
||||
void GetNameOfLength (char* name, int maxLength, OSType inControllerType) const
|
||||
{
|
||||
|
|
@ -944,7 +944,10 @@ private:
|
|||
juceFilter->getParameterText (index).copyToBuffer (valueString, maxLength);
|
||||
}
|
||||
|
||||
Cmn_Bool IsAutomatable() const { return true; }
|
||||
Cmn_Bool IsAutomatable() const
|
||||
{
|
||||
return juceFilter->isParameterAutomatable (index);
|
||||
}
|
||||
|
||||
private:
|
||||
//==============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue