Browse Source

Don't set juce UIs always-on-top, it has issues on linux

tags/1.9.4
falkTX 11 years ago
parent
commit
2932478d00
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      source/modules/carla_native/vex-fx.cpp
  2. +1
    -1
      source/modules/carla_native/vex-synth.cpp

+ 1
- 1
source/modules/carla_native/vex-fx.cpp View File

@@ -38,7 +38,7 @@ public:
fClosed(false)
{
setVisible(false);
setAlwaysOnTop(true);
//setAlwaysOnTop(true);
setOpaque(true);
setResizable(false, false);
setUsingNativeTitleBar(true);


+ 1
- 1
source/modules/carla_native/vex-synth.cpp View File

@@ -75,7 +75,7 @@ public:
fClosed(false)
{
setVisible(false);
setAlwaysOnTop(true);
//setAlwaysOnTop(true);
setOpaque(true);
setResizable(false, false);
setUsingNativeTitleBar(true);


Loading…
Cancel
Save