GNOME Bugzilla – Bug 247087
Close mail message using 'ESC' key
Last modified: 2004-09-29 20:42:59 UTC
Please fill in this template when reporting a bug, unless you know what you are doing. Description of Problem: Steps to reproduce the problem: 1) Double click on a mail item, to open the mail message in a new window 2) After reading the mail, the user should be able to dismiss the mail message window by pressing the 'Esc' key. Actual Results: not closed, How often does this happen? always Additional Information:
Index: message-browser.c =================================================================== RCS file: /cvs/gnome/evolution/mail/message-browser.c,v retrieving revision 1.40 diff -u -r1.40 message-browser.c --- message-browser.c 25 Jul 2003 20:24:38 -0000 1.40 +++ message-browser.c 30 Jul 2003 02:15:07 -0000 @@ -341,6 +341,9 @@ case GDK_KP_Delete: message_browser_delete (NULL, mb, NULL); return TRUE; + case GDK_Escape: + message_browser_close (NULL, mb, NULL); + return TRUE; default: }
patch provided,
fixed in cvs