mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
VST3: Call setVisible (false) on the editor content component before removing it from the desktop on Windows to avoid an OpenGLTexture leak
This commit is contained in:
parent
81f162a43d
commit
af098a1985
1 changed files with 1 additions and 0 deletions
|
|
@ -874,6 +874,7 @@ private:
|
|||
if (component != nullptr)
|
||||
{
|
||||
#if JUCE_WINDOWS
|
||||
component->setVisible (false);
|
||||
component->removeFromDesktop();
|
||||
#else
|
||||
if (macHostWindow != nullptr)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue