Browse Source

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

v7.0.9
reuk 2 years ago
parent
commit
c5b8b7eae0
No known key found for this signature in database GPG Key ID: FCB43929F012EE5C
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp

+ 1
- 1
modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp 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 tresult PLUGIN_API requestOpenEditor ([[maybe_unused]] FIDString name) override
{ {
jassertfalse;
// This request cannot currently be surfaced in the JUCE public API
return kResultFalse; return kResultFalse;
} }


Loading…
Cancel
Save