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

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

This commit is contained in:
hogliux 2016-05-16 14:33:53 +01:00
parent f0dd881e08
commit 93a41cf743

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);
}
}