Browse Source

Fix crash showing LV2 show-interface UIs

Fixes #569
tags/1.9.8
falkTX 6 years ago
parent
commit
4d0619286d
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      source/backend/plugin/CarlaPluginLV2.cpp

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

@@ -1483,10 +1483,9 @@ public:
#ifndef LV2_UIS_ONLY_BRIDGES
if (fUI.type == UI::TYPE_EMBED)
{
fUI.window->setChildWindow(fUI.widget);

if (fUI.window != nullptr)
{
fUI.window->setChildWindow(fUI.widget);
fUI.window->show();
}
else if (fExt.uishow != nullptr)


Loading…
Cancel
Save