Browse Source

Do not bridge LSP plugin UIs, for now

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.1-rc1
falkTX 6 years ago
parent
commit
fc39645141
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      source/backend/plugin/CarlaPluginLV2.cpp

+ 5
- 0
source/backend/plugin/CarlaPluginLV2.cpp View File

@@ -4597,6 +4597,11 @@ public:
if (std::strstr(rdfUI->URI, "http://calf.sourceforge.net/plugins/gui/") != nullptr)
return pData->engine->getOptions().preferUiBridges;

// LSP-Plugins UIs make heavy use of URIDs, for which carla right now is very slow
// FIXME after some optimization, remove this
if (std::strstr(rdfUI->URI, "http://lsp-plug.in/ui/lv2/") != nullptr)
return false;

return true;
#else
return false;


Loading…
Cancel
Save