mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Second pass at fixing display of Preferences menu shortcut on macOS.
The previous fix didn't work 100% of the time either.
This commit is contained in:
parent
d8cc142501
commit
aba58d9085
@ -128,15 +128,8 @@ void MainWindow::SetupGUI()
|
||||
setWindowTitle(getMainWindowTitle());
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
ui->action_About->setMenuRole(QAction::ApplicationSpecificRole);
|
||||
ui->action_Preferences->setMenuRole(QAction::ApplicationSpecificRole);
|
||||
|
||||
// For some reason, setShortcuts won't change the text of the menu item unless Qt has had a chance
|
||||
// to do something first. Without the processEvents() call it still installs the shortcut, but
|
||||
// not visible. (Any preceding UI such as QMessageBox seems to have the same effect.)
|
||||
QApplication::processEvents();
|
||||
|
||||
ui->action_Preferences->setShortcuts(QKeySequence::Preferences);
|
||||
ui->action_About->setMenuRole(QAction::AboutRole);
|
||||
ui->action_Preferences->setMenuRole(QAction::PreferencesRole);
|
||||
#endif
|
||||
|
||||
ui->actionLine_Cursor->setChecked(AppSetting->lineCursorMode());
|
||||
|
Loading…
Reference in New Issue
Block a user