diff options
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/folder-browser.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 12b5bdfa6d..aba2816df8 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,10 @@ 2001-08-10 Jason Leach <jleach@ximian.com> + * folder-browser.c: Make the context menu for the Sent folder have + "Resend..." instead of "Resend", to clarify that it will bring up + a dialog needing your input rather than just blindly sending the + message again. Also give it the 'e' accelerator. Bug #6838. + * mail-callbacks.c (next_unread_msg): Since 'N' keypresses go through here now, use wrap-around selecting. (previous_unread_msg): Same for 'P' here. diff --git a/mail/folder-browser.c b/mail/folder-browser.c index 8d94f74d41..df1539c72c 100644 --- a/mail/folder-browser.c +++ b/mail/folder-browser.c @@ -1277,7 +1277,7 @@ static EPopupMenu filter_menu[] = { static EPopupMenu context_menu[] = { { N_("_Open"), NULL, GTK_SIGNAL_FUNC (open_msg), NULL, 0 }, - { N_("Resend"), NULL, + { N_("R_esend..."), NULL, GTK_SIGNAL_FUNC (resend_msg), NULL, CAN_RESEND }, { N_("_Save As..."), NULL, GTK_SIGNAL_FUNC (save_msg), NULL, 0 }, |