This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Don't set juce UIs always-on-top, it has issues on linux
tags/1.9.4
falkTX
11 years ago
parent
46a13d7554
commit
2932478d00
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
source/modules/carla_native/vex-fx.cpp
+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);
Write
Preview
Loading…
Cancel
Save