Browse Source

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

Signed-off-by: falkTX <falktx@gmail.com>
tags/v1.9.14
falkTX 6 years ago
parent
commit
6e656ce91d
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

@@ -510,7 +510,8 @@ public:
value = (intptr_t)fUI.window->getDisplay(); value = (intptr_t)fUI.window->getDisplay();
#endif #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; fUI.isOpen = true;




Loading…
Cancel
Save