The bonobo menu items now handle 'n' and 'p'.

2001-08-09  Peter Williams  <peterw@ximian.com>

	* folder-browser.c (on_key_press): The bonobo menu items now
	handle 'n' and 'p'.

svn path=/trunk/; revision=11853
This commit is contained in:
Peter Williams
2001-08-09 23:51:23 +00:00
committed by Peter Williams
parent 8575c0d88d
commit 3e4aed06db
2 changed files with 3 additions and 14 deletions

View File

@ -1,5 +1,8 @@
2001-08-09 Peter Williams <peterw@ximian.com>
* folder-browser.c (on_key_press): The bonobo menu items now
handle 'n' and 'p'.
* message-list.c (message_list_select): Fix inline documentation.
2001-08-09 Anna Marie Dirks <anna@ximian.com>

View File

@ -1532,20 +1532,6 @@ on_key_press (GtkWidget *widget, GdkEventKey *key, gpointer data)
delete_msg (NULL, fb);
return TRUE;
case 'n':
case 'N':
message_list_select (fb->message_list, row,
MESSAGE_LIST_SELECT_NEXT,
0, CAMEL_MESSAGE_SEEN, TRUE);
return TRUE;
case 'p':
case 'P':
message_list_select (fb->message_list, row,
MESSAGE_LIST_SELECT_PREVIOUS,
0, CAMEL_MESSAGE_SEEN, TRUE);
return TRUE;
case GDK_Menu:
on_right_click (fb->message_list->tree, row, path, 2,
(GdkEvent *)key, fb);