Browse Source

tags/2021-05-28
jules 18 years ago
parent
commit
8cd120aead
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      extras/audio plugins/wrapper/formats/RTAS/juce_RTASWrapper.cpp

+ 5
- 2
extras/audio plugins/wrapper/formats/RTAS/juce_RTASWrapper.cpp View File

@@ -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…
Cancel
Save