From 5a3d0d7e2183d20fb91828d7521040a66ed32c09 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Fri, 21 May 2021 01:23:26 +0100 Subject: [PATCH] Use main window menu bar for macOS MAP65 --- map65/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/map65/main.cpp b/map65/main.cpp index cb140be48..918f64b43 100644 --- a/map65/main.cpp +++ b/map65/main.cpp @@ -20,6 +20,8 @@ int main(int argc, char *argv[]) // Override programs executable basename as application name. a.setApplicationName ("MAP65"); a.setApplicationVersion ("3.0.0-devel"); + // switch off as we share an Info.plist file with WSJT-X + a.setAttribute (Qt::AA_DontUseNativeMenuBar); MainWindow w; w.show (); QObject::connect (&a, &QApplication::lastWindowClosed, &a, &QApplication::quit);