Skip to content

Instantly share code, notes, and snippets.

@rcanepa
Created September 5, 2017 00:08
Show Gist options
  • Select an option

  • Save rcanepa/1afdcffb4f79f0eda47c8553fd6f9515 to your computer and use it in GitHub Desktop.

Select an option

Save rcanepa/1afdcffb4f79f0eda47c8553fd6f9515 to your computer and use it in GitHub Desktop.
QT DontUseNativeMenuBar Mac
#include "mainwindow.h"
#include <QApplication>
#include <QCoreApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QCoreApplication::setAttribute(Qt::AA_DontUseNativeMenuBar, true);
MainWindow w;
w.show();
return a.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment