Mercurial > pidgin
changeset 14823:10244943bbc9
[gaim-migrate @ 17590]
Fix the ctr-n and ctr-p binding in the tree-widget.
committer: Tailor Script <tailor@pidgin.im>
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Fri, 27 Oct 2006 18:19:40 +0000 |
parents | ac0ce6064000 |
children | 6ec7e963d186 |
files | console/libgnt/gnttree.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/console/libgnt/gnttree.c Thu Oct 26 23:07:28 2006 +0000 +++ b/console/libgnt/gnttree.c Fri Oct 27 18:19:40 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", "\033" GNT_KEY_CTRL_N, NULL); + gnt_widget_register_binding(parent_class, "move-up", GNT_KEY_CTRL_N, 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", "\033" GNT_KEY_CTRL_P, NULL); + gnt_widget_register_binding(parent_class, "move-down", GNT_KEY_CTRL_P, 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,