Browse Source

Fix for plugins that call UI stuff when loaded

tags/2018-04-16
falkTX 8 years ago
parent
commit
c930474499
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      libs/juce/source/modules/juce_audio_plugin_client/LV2/juce_LV2_Wrapper.cpp

+ 4
- 1
libs/juce/source/modules/juce_audio_plugin_client/LV2/juce_LV2_Wrapper.cpp View File

@@ -1119,7 +1119,10 @@ public:
uridTimeSpeed (0),
usingNominalBlockLength (false)
{
filter = createPluginFilterOfType (AudioProcessor::wrapperType_VST); // FIXME
{
const MessageManagerLock mmLock;
filter = createPluginFilterOfType (AudioProcessor::wrapperType_VST); // FIXME
}
jassert (filter != nullptr);

filter->setPlayConfigDetails (numInChans, numOutChans, 0, 0);


Loading…
Cancel
Save