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

Projucer: Enable "Plugin MIDI Input" and "Plugin MIDI Output" settings when generating the ArpeggiatorPlugin demo from a PIP

This commit is contained in:
ed 2019-01-11 12:56:45 +00:00
parent 4a6e969cba
commit 9afccfba10

View file

@ -527,7 +527,9 @@ StringArray PIPGenerator::getPluginCharacteristics() const
return { Ids::pluginWantsMidiIn.toString(),
Ids::pluginIsSynth.toString() };
else if (name == "ArpeggiatorPlugin")
return { Ids::pluginIsMidiEffectPlugin.toString() };
return { Ids::pluginWantsMidiIn.toString(),
Ids::pluginProducesMidiOut.toString(),
Ids::pluginIsMidiEffectPlugin.toString() };
return {};
}