Mercurial > pidgin.yaz
changeset 14866:0387e8b1b8c2
[gaim-migrate @ 17635]
Fix ^n and ^p to not be backwards
committer: Tailor Script <tailor@pidgin.im>
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Tue, 31 Oct 2006 03:11:33 +0000 |
parents | 61c3edbaf048 |
children | 1072720fc35f |
files | console/libgnt/gnttree.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/console/libgnt/gnttree.c Tue Oct 31 03:01:21 2006 +0000 +++ b/console/libgnt/gnttree.c Tue Oct 31 03:11:33 2006 +0000 @@ -710,10 +710,10 @@ gnt_widget_class_register_action(parent_class, "move-up", action_up, "\033" GNT_KEY_UP, NULL); - gnt_widget_register_binding(parent_class, "move-up", GNT_KEY_CTRL_N, NULL); + gnt_widget_register_binding(parent_class, "move-up", GNT_KEY_CTRL_P, NULL); gnt_widget_class_register_action(parent_class, "move-down", action_down, "\033" GNT_KEY_DOWN, NULL); - gnt_widget_register_binding(parent_class, "move-down", GNT_KEY_CTRL_P, NULL); + gnt_widget_register_binding(parent_class, "move-down", GNT_KEY_CTRL_N, NULL); gnt_widget_class_register_action(parent_class, "page-up", action_page_up, "\033" GNT_KEY_PGUP, NULL); gnt_widget_class_register_action(parent_class, "page-down", action_page_down,