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 /mail/folder-browser.c | |
parent | a7a767287fa0bc03c9e56d5ef3a791bcc1302d57 (diff) | |
download | gsoc2013-evolution-a2befe96e673268cd7a703da3652db5b7d74ae1d.tar.gz 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
Diffstat (limited to 'mail/folder-browser.c')
-rw-r--r-- | mail/folder-browser.c | 10 |
1 files changed, 0 insertions, 10 deletions
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, |