1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-01 03:10:06 +00:00

Made sure that VST3 plugin views have setFrame (nullptr) called before their UIs are closed, because some plugins seem to expect this.

This commit is contained in:
jules 2014-06-04 10:52:10 +01:00
parent 9342cdcc5b
commit ead283e95c

View file

@ -1449,6 +1449,8 @@ public:
~VST3PluginWindow()
{
warnOnFailure (view->removed());
warnOnFailure (view->setFrame (nullptr));
getAudioProcessor()->editorBeingDeleted (this);
#if JUCE_MAC