Mercurial > pidgin
changeset 14827:02b70dc43044
[gaim-migrate @ 17594]
Fix the bindings for scrolling through the histories in the entrybox.
committer: Tailor Script <tailor@pidgin.im>
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sat, 28 Oct 2006 04:59:07 +0000 |
parents | 955798236bf4 |
children | 91a89d5ef714 |
files | console/libgnt/gntentry.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/console/libgnt/gntentry.c Sat Oct 28 04:55:07 2006 +0000 +++ b/console/libgnt/gntentry.c Sat Oct 28 04:59:07 2006 +0000 @@ -523,9 +523,9 @@ gnt_widget_class_register_action(parent_class, "suggest-prev", suggest_prev, "\033" GNT_KEY_UP, NULL); gnt_widget_class_register_action(parent_class, "history-prev", history_prev, - "\033" GNT_KEY_CTRL_UP, NULL); + "\033" GNT_KEY_CTRL_DOWN, NULL); gnt_widget_class_register_action(parent_class, "history-next", history_next, - "\033" GNT_KEY_CTRL_DOWN, NULL); + "\033" GNT_KEY_CTRL_UP, NULL); gnt_style_read_actions(G_OBJECT_CLASS_TYPE(klass), klass);