Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.7.2, 6.8.0
-
None
Description
Apple switched from using "Preferences" to "Settings" as a menu title several years ago. We would like to do the same, but it doesn't work with Qt.
I use the following to create a standard Settings menu:
auto fileMenu = menuBar()->addMenu( "File" );
auto preferencesAction = fileMenu->addAction( "Settings...", QKeySequence::Preferences );
preferencesAction->setMenuRole( QAction::PreferencesRole );
And indeed, a menu called "Settings..." is created in the standard location with the shortcut Apple-,. However, after a while, the menu is renamed to "Preferences...".
I suggest to change the Qt default to Settings.