mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
Revert commit d0c238d: Use getParameterText to respond to AU's kAudioUnitProperty_ParameterStringFromValue
This commit is contained in:
parent
f7d7f8a204
commit
1a40df99bc
1 changed files with 1 additions and 6 deletions
|
|
@ -485,12 +485,7 @@ public:
|
|||
if (AudioProcessorParameter* param = juceFilter->getParameters() [paramID])
|
||||
text = param->getText (value, 0);
|
||||
else
|
||||
{
|
||||
if (value == juceFilter->getParameter (paramID))
|
||||
text = juceFilter->getParameterText (paramID);
|
||||
else
|
||||
text = (String) value;
|
||||
}
|
||||
text = String (value);
|
||||
|
||||
pv->outString = text.toCFString();
|
||||
return noErr;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue