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

PlistOptions: Add MIDI tag to aumi plists

This commit is contained in:
reuk 2021-04-16 18:38:31 +01:00
parent 965f14311d
commit e4dba6a40a
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

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 };
}