diff --git a/extras/audio plugins/wrapper/formats/RTAS/juce_RTASWrapper.cpp b/extras/audio plugins/wrapper/formats/RTAS/juce_RTASWrapper.cpp index a8db307062..9c6c8875f3 100644 --- a/extras/audio plugins/wrapper/formats/RTAS/juce_RTASWrapper.cpp +++ b/extras/audio plugins/wrapper/formats/RTAS/juce_RTASWrapper.cpp @@ -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: //==============================================================================