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
This commit is contained in:
committed by
Chris Lahey
parent
a7a767287f
commit
a2befe96e6
@ -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
|
||||
|
||||
@ -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,
|
||||
|
||||
Reference in New Issue
Block a user