Browse Source

PlistOptions: Add MIDI tag to aumi plists

v6.1.6
reuk 4 years ago
parent
commit
e4dba6a40a
No known key found for this signature in database GPG Key ID: 9ADCD339CFC98A11
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      extras/Build/juce_build_tools/utils/juce_PlistOptions.cpp

+ 4
- 1
extras/Build/juce_build_tools/utils/juce_PlistOptions.cpp View File

@@ -340,7 +340,10 @@ namespace build_tools
auto* tagsArray = componentDict->createNewChildElement ("array");
tagsArray->createNewChildElement ("string")
->addTextElement (isPluginSynth ? "Synth" : "Effects");
->addTextElement (isPluginSynth ? "Synth" : "Effects");
if (auMainType.removeCharacters ("'") == "aumi")
tagsArray->createNewChildElement ("string")->addTextElement ("MIDI");
return { plistKey, plistEntry };
}


Loading…
Cancel
Save