I’ve seen it mentioned in various places that if you create a MIDI effect, you specifically need to override isMidiEffect() manually to true. This is not immediately obvious and the assertion failure from not doing so doesn’t point you in the right direction.
What I couldn’t find was why this isn’t done automatically by default as follows:
bool isMidiEffect() const override
{
#if JucePlugin_IsMidiEffect
return true;
#else
return false;
#endif
}
Surely this would take care of it? Or are you trying to discourage people from ticking this box because of certain plugin format quirks, or for some other reason? If so, I think this should be more transparent.
Thoughts? 
