mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Disable menu icons for osx.
https://gitorious.org/keepassx/keepassx/merge_requests/23
This commit is contained in:
parent
9e87230102
commit
ef46b3e8ad
@ -43,6 +43,11 @@ int main(int argc, char** argv)
|
||||
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.show();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user