Unify Settings menu shortcut

Use , as the shortcut key for settings in all built-in apps. Some used
S, but that's already the shortcut for saving. , is the recommended
shortcut in the HIG already, but built-in apps were not updated to
match.

Fixes #11733.
This commit is contained in:
Adrien Destugues
2020-07-13 20:53:45 +02:00
parent d594bd97d3
commit 15ba64aaa3
7 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -1567,7 +1567,7 @@ MainWin::_CreateMenu()
new BMessage(M_TOGGLE_ALWAYS_ON_TOP), 'A'));
item = new BMenuItem(B_TRANSLATE("Settings" B_UTF8_ELLIPSIS),
new BMessage(M_SETTINGS), 'S');
new BMessage(M_SETTINGS), ',');
fFileMenu->AddItem(item);
item->SetTarget(be_app);