Skip to content

Commit 08754d8

Browse files
committed
Use our native menu bar on macOS
The Qt Quick Controls native menu bar introduced in Qt 6.8 is broken.
1 parent 573a3a3 commit 08754d8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ui/internal/uiengine.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ bool UiEngine::useNativeMenuBar() const
7878
return true;
7979
#else
8080
// Since Qt 6.8, Qt Quick Controls menu bar is native
81-
return false;
81+
// However, it's currently broken, so use our native menu bar
82+
return /*false*/ true;
8283
#endif
8384
#elif defined(Q_OS_LINUX)
8485
const QDBusConnection connection = QDBusConnection::sessionBus();

0 commit comments

Comments
 (0)