Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove unecessary Qt detection
Just incase Qt5 eventually honors this
  • Loading branch information
tresf committed Feb 11, 2019
commit f693bf692a0f6f416ca0845389bccbeaf96a1d17
3 changes: 2 additions & 1 deletion src/core/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,8 @@ int main( int argc, char * * argv )
return EXIT_FAILURE;
}
#endif
#if defined( LMMS_BUILD_LINUX ) && QT_VERSION < 0x050000
#ifdef LMMS_BUILD_LINUX
// don't let OS steal the menu bar. FIXME: only effective on Qt4
QCoreApplication::setAttribute( Qt::AA_DontUseNativeMenuBar );
#endif
#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0)
Expand Down