From c40938ad1f14f701fc212c0d4864a60a5e34df3f Mon Sep 17 00:00:00 2001 From: John Scipione Date: Fri, 10 Jan 2014 16:54:47 -0500 Subject: [PATCH] Mail: update quote shortcuts. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Quote goes from Cmd+→ to Cmd+] * Unquote goes from Cmd+← to Cmd+[ This frees cmd+arrow keys up for text navigation. --- src/apps/mail/MailWindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apps/mail/MailWindow.cpp b/src/apps/mail/MailWindow.cpp index ad386467e2..b87d99ec11 100644 --- a/src/apps/mail/MailWindow.cpp +++ b/src/apps/mail/MailWindow.cpp @@ -342,10 +342,10 @@ TMailWindow::TMailWindow(BRect rect, const char* title, TMailApp* app, new BMessage(M_FIND_AGAIN), 'G')); if (!fIncoming) { menu->AddSeparatorItem(); - menu->AddItem(fQuote =new BMenuItem(B_TRANSLATE("Quote"), - new BMessage(M_QUOTE), B_RIGHT_ARROW)); + menu->AddItem(fQuote = new BMenuItem(B_TRANSLATE("Quote"), + new BMessage(M_QUOTE), ']')); menu->AddItem(fRemoveQuote = new BMenuItem(B_TRANSLATE("Remove quote"), - new BMessage(M_REMOVE_QUOTE), B_LEFT_ARROW)); + new BMessage(M_REMOVE_QUOTE), '[')); menu->AddSeparatorItem(); fSpelling = new BMenuItem(B_TRANSLATE("Check spelling"), new BMessage(M_CHECK_SPELLING), ';');