Browse Source

Call setProcessing (false) when resting a VST3 plug-in

tags/2021-05-28
hogliux 9 years ago
parent
commit
93a41cf743
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp

+ 4
- 1
modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp View File

@@ -1966,10 +1966,13 @@ public:
//==============================================================================
void reset() override
{
if (component != nullptr)
if (component != nullptr && processor != nullptr)
{
processor->setProcessing (false);
component->setActive (false);
component->setActive (true);
processor->setProcessing (true);
}
}


Loading…
Cancel
Save