Mail: Change quote and unquote shortcuts

to Cmd+' (quote) and Cmd+Shift+'

This should also work better for International users who don't have
ready access to the [ and ] keys.
This commit is contained in:
John Scipione 2014-01-31 18:41:24 -05:00
parent 0875173246
commit 3042958bab
1 changed files with 2 additions and 5 deletions

View File

@ -343,14 +343,11 @@ TMailWindow::TMailWindow(BRect rect, const char* title, TMailApp* app,
if (!fIncoming) {
menu->AddSeparatorItem();
fQuote = new BMenuItem(B_TRANSLATE("Quote"),
new BMessage(M_QUOTE), ']');
new BMessage(M_QUOTE), '\'');
menu->AddItem(fQuote);
AddShortcut(']', B_OPTION_KEY, new BMessage(M_QUOTE));
fRemoveQuote = new BMenuItem(B_TRANSLATE("Remove quote"),
new BMessage(M_REMOVE_QUOTE), '[');
new BMessage(M_REMOVE_QUOTE), '\'', B_SHIFT_KEY);
menu->AddItem(fRemoveQuote);
AddShortcut('[', B_OPTION_KEY, new BMessage(M_REMOVE_QUOTE));
menu->AddSeparatorItem();
fSpelling = new BMenuItem(B_TRANSLATE("Check spelling"),