1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Remove ARA related no-op code

This commit is contained in:
attila 2022-05-21 19:52:40 +02:00 committed by Attila Szarvas
parent f582c84c37
commit dbfb74f091

View file

@ -548,24 +548,6 @@ void Project::updatePluginCategories()
pluginVSTCategoryValue.resetToDefault();
}
{
const auto araAnalyzableContent = projectRoot.getProperty (Ids::pluginARAAnalyzableContent, {}).toString();
if (getAllARAContentTypeVars().contains (araAnalyzableContent))
pluginARAAnalyzableContentValue = araAnalyzableContent;
else if (getAllARAContentTypeStrings().contains (araAnalyzableContent))
pluginARAAnalyzableContentValue = Array<var> (getAllARAContentTypeVars()[getAllARAContentTypeStrings().indexOf (araAnalyzableContent)]);
}
{
const auto araTransformationFlags = projectRoot.getProperty (Ids::pluginARATransformFlags, {}).toString();
if (getAllARATransformationFlagVars().contains (araTransformationFlags))
pluginARATransformFlagsValue = araTransformationFlags;
else if (getAllARATransformationFlagStrings().contains (araTransformationFlags))
pluginARATransformFlagsValue = Array<var> (getAllARATransformationFlagVars()[getAllARATransformationFlagStrings().indexOf (araTransformationFlags)]);
}
{
auto auMainType = projectRoot.getProperty (Ids::pluginAUMainType, {}).toString();