1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-16 00:34:19 +00:00

Projucer: Only add plug-in properties to plug-in projects

This commit is contained in:
ed 2020-01-31 15:27:26 +00:00
parent c8da037147
commit fdc9831e60
11 changed files with 46 additions and 45 deletions

View file

@ -1006,7 +1006,7 @@ void Project::createPropertyEditors (PropertyListBuilder& props)
props.add (new TextPropertyComponent (bundleIdentifierValue, "Bundle Identifier", 256, false),
"A unique identifier for this product, mainly for use in OSX/iOS builds. It should be something like 'com.yourcompanyname.yourproductname'");
if (getProjectType().isAudioPlugin())
if (isAudioPluginProject())
createAudioPluginPropertyEditors (props);
{