From 2932478d005f4ad079defac012b189942188a704 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 19 Oct 2013 05:17:09 +0100 Subject: [PATCH] Don't set juce UIs always-on-top, it has issues on linux --- source/modules/carla_native/vex-fx.cpp | 2 +- source/modules/carla_native/vex-synth.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/modules/carla_native/vex-fx.cpp b/source/modules/carla_native/vex-fx.cpp index 60bf4676e..a53cb9167 100644 --- a/source/modules/carla_native/vex-fx.cpp +++ b/source/modules/carla_native/vex-fx.cpp @@ -38,7 +38,7 @@ public: fClosed(false) { setVisible(false); - setAlwaysOnTop(true); + //setAlwaysOnTop(true); setOpaque(true); setResizable(false, false); setUsingNativeTitleBar(true); diff --git a/source/modules/carla_native/vex-synth.cpp b/source/modules/carla_native/vex-synth.cpp index 2dedcf974..be51eae11 100644 --- a/source/modules/carla_native/vex-synth.cpp +++ b/source/modules/carla_native/vex-synth.cpp @@ -75,7 +75,7 @@ public: fClosed(false) { setVisible(false); - setAlwaysOnTop(true); + //setAlwaysOnTop(true); setOpaque(true); setResizable(false, false); setUsingNativeTitleBar(true);