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
Fix strict build for >= or < qt 5.15
Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.2.0
falkTX
4 years ago
parent
6b41edb3de
commit
c6bd01d3d8
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
source/bridges-ui/CarlaBridgeToolkitQt.cpp
+ 4
- 0
source/bridges-ui/CarlaBridgeToolkitQt.cpp
View File
@@ -91,7 +91,11 @@ public:
fApp = new QApplication(qargc, qargv);
#if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0)
fWindow = new QMainWindow(nullptr);
#else
fWindow = new QMainWindow(nullptr, nullptr);
#endif
fWindow->resize(30, 30);
fWindow->hide();
Write
Preview
Loading…
Cancel
Save