1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

VST hosting: made sure that effEditClose is called on Mac builds with Carbon support.

This commit is contained in:
jules 2014-05-09 12:17:33 +01:00
parent 4721d75cc1
commit 201ba182d5

View file

@ -2317,10 +2317,8 @@ private:
{
if (isOpen)
{
#if ! (JUCE_MAC && JUCE_SUPPORT_CARBON)
JUCE_VST_LOG ("Closing VST UI: " + plugin.getName());
isOpen = false;
dispatch (effEditClose, 0, 0, 0, 0);
stopTimer();
@ -2336,7 +2334,6 @@ private:
pluginWindow = 0;
pluginProc = 0;
#endif
#endif
}
}