commit dcee933ef595dc62fa9ea79d9d3cadaf85d0d543 parent 3c4ad99a891f0595c5fe9d1e552d81bf1277c38f Author: falkTX <falktx@falktx.com> Date: Mon, 19 Sep 2022 10:45:47 +0100 Fix CLAP UI under bitwig linux Signed-off-by: falkTX <falktx@falktx.com> Diffstat:
M | distrho/src/DistrhoPluginCLAP.cpp | | | 7 | ++++--- |
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/distrho/src/DistrhoPluginCLAP.cpp b/distrho/src/DistrhoPluginCLAP.cpp @@ -367,10 +367,11 @@ public: fParentWindow = window->uptr; - /* - if (fUI != nullptr) + if (fUI == nullptr) + { createUI(); - */ + fHostGui->resize_hints_changed(fHost); + } return true; }