Browse Source

Never embed UIs for windows bridges, feature is X11 only

Signed-off-by: falkTX <falktx@falktx.com>
pull/1723/head
falkTX 2 years ago
parent
commit
c2bd7cf63c
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/backend/plugin/CarlaPluginBridge.cpp

+ 1
- 1
source/backend/plugin/CarlaPluginBridge.cpp View File

@@ -2162,7 +2162,7 @@ public:
pData->options = optionEn; pData->options = optionEn;


#ifdef HAVE_X11 #ifdef HAVE_X11
if (fBridgeVersion < 9)
if (fBridgeVersion < 9 || fBinaryType == BINARY_WIN32 || fBinaryType == BINARY_WIN64)
#endif #endif
{ {
pData->hints &= ~PLUGIN_HAS_CUSTOM_EMBED_UI; pData->hints &= ~PLUGIN_HAS_CUSTOM_EMBED_UI;


Loading…
Cancel
Save