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

VST3 Host: Remove assertion when plugin requests that its editor should be opened

This commit is contained in:
reuk 2023-06-19 17:52:43 +01:00
parent 2d0f21fb4a
commit c5b8b7eae0
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -417,7 +417,7 @@ struct VST3HostContext : public Vst::IComponentHandler, // From VST V3.0.0
//==============================================================================
tresult PLUGIN_API requestOpenEditor ([[maybe_unused]] FIDString name) override
{
jassertfalse;
// This request cannot currently be surfaced in the JUCE public API
return kResultFalse;
}