From c5b8b7eae0b07a77c50a78962efe3cf6fa2a2fe0 Mon Sep 17 00:00:00 2001 From: reuk Date: Mon, 19 Jun 2023 17:52:43 +0100 Subject: [PATCH] VST3 Host: Remove assertion when plugin requests that its editor should be opened --- .../format_types/juce_VST3PluginFormat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp b/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp index 2229ff468e..fb18953a14 100644 --- a/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp +++ b/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp @@ -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; }