Browse Source

Give up trying to follow VST2 spec, always assume UI opens nicely

Signed-off-by: falkTX <falktx@gmail.com>
tags/v2.1-alpha2
falkTX 5 years ago
parent
commit
4b3e0fb839
Signed by: falkTX <falktx@gmail.com> GPG Key ID: 2D3445A829213837
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      source/backend/plugin/CarlaPluginVST2.cpp

+ 2
- 1
source/backend/plugin/CarlaPluginVST2.cpp View File

@@ -516,7 +516,8 @@ public:
value = (intptr_t)fUI.window->getDisplay();
#endif

if (dispatcher(effEditOpen, 0, value, fUI.window->getPtr()) != 0)
// NOTE: there are far too many broken VST2 plugins, don't bother checking return value
if (dispatcher(effEditOpen, 0, value, fUI.window->getPtr()) != 0 || true)
{
fUI.isOpen = true;



Loading…
Cancel
Save