mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-01 01:47:31 -04:00
Disable menu icons for osx.
https://gitorious.org/keepassx/keepassx/merge_requests/23
This commit is contained in:
parent
9e87230102
commit
ef46b3e8ad
1 changed files with 5 additions and 0 deletions
|
@ -43,6 +43,11 @@ int main(int argc, char** argv)
|
||||||
Config::createConfigFromFile(argumentMap.value("config"));
|
Config::createConfigFromFile(argumentMap.value("config"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef Q_OS_MAC
|
||||||
|
// Don't show menu icons on OSX
|
||||||
|
QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
|
||||||
|
#endif
|
||||||
|
|
||||||
MainWindow mainWindow;
|
MainWindow mainWindow;
|
||||||
mainWindow.show();
|
mainWindow.show();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue