diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2001-01-28 06:23:06 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-01-28 06:23:06 +0800 |
commit | a2befe96e673268cd7a703da3652db5b7d74ae1d (patch) | |
tree | f006c5f3dc4654b6a119531061263ca9ab88e856 | |
parent | a7a767287fa0bc03c9e56d5ef3a791bcc1302d57 (diff) | |
download | gsoc2013-evolution-a2befe96e673268cd7a703da3652db5b7d74ae1d.tar gsoc2013-evolution-a2befe96e673268cd7a703da3652db5b7d74ae1d.tar.gz gsoc2013-evolution-a2befe96e673268cd7a703da3652db5b7d74ae1d.tar.bz2 gsoc2013-evolution-a2befe96e673268cd7a703da3652db5b7d74ae1d.tar.lz gsoc2013-evolution-a2befe96e673268cd7a703da3652db5b7d74ae1d.tar.xz gsoc2013-evolution-a2befe96e673268cd7a703da3652db5b7d74ae1d.tar.zst gsoc2013-evolution-a2befe96e673268cd7a703da3652db5b7d74ae1d.zip |
Don't handle home and end keys since %ETable deals with them now.
2001-01-27 Christopher James Lahey <clahey@helixcode.com>
* folder-browser.c (etable_key): Don't handle home and end keys
since %ETable deals with them now.
svn path=/trunk/; revision=7865
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/folder-browser.c | 10 |
2 files changed, 5 insertions, 10 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index c92502803c..c95612464c 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-01-27 Christopher James Lahey <clahey@helixcode.com> + + * folder-browser.c (etable_key): Don't handle home and end keys + since %ETable deals with them now. + 2001-01-27 Jeffrey Stedfast <fejj@ximian.com> * message-list.c (address_compare): Protect against NULL address diff --git a/mail/folder-browser.c b/mail/folder-browser.c index e3903fab3e..ee522c899d 100644 --- a/mail/folder-browser.c +++ b/mail/folder-browser.c @@ -828,16 +828,6 @@ etable_key (ETable *table, int row, int col, GdkEvent *ev, FolderBrowser *fb) 0, CAMEL_MESSAGE_DELETED); return TRUE; - case GDK_Home: - case GDK_KP_Home: - message_list_select(fb->message_list, 0, MESSAGE_LIST_SELECT_NEXT, 0, 0); - return TRUE; - - case GDK_End: - case GDK_KP_End: - message_list_select(fb->message_list, -1, MESSAGE_LIST_SELECT_PREVIOUS, 0, 0); - return TRUE; - case 'n': case 'N': message_list_select (fb->message_list, row, |