1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-27 02:20:05 +00:00

Projucer: Fixed a bug causing AAX and RTAS categories to not be recalled correctly

This commit is contained in:
ed 2018-04-23 17:27:10 +01:00
parent d72b58467f
commit 1e23f5fa25

View file

@ -388,8 +388,6 @@ void Project::updatePluginCategories()
pluginAAXCategoryValue = aaxCategory;
else if (getAllAAXCategoryStrings().contains (aaxCategory))
pluginAAXCategoryValue = Array<var> (getAllAAXCategoryVars()[getAllAAXCategoryStrings().indexOf (aaxCategory)]);
else
pluginAAXCategoryValue.resetToDefault();
}
{
@ -399,8 +397,6 @@ void Project::updatePluginCategories()
pluginRTASCategoryValue = rtasCategory;
else if (getAllRTASCategoryStrings().contains (rtasCategory))
pluginRTASCategoryValue = Array<var> (getAllRTASCategoryVars()[getAllRTASCategoryStrings().indexOf (rtasCategory)]);
else
pluginRTASCategoryValue.resetToDefault();
}
{