From: <ebl...@us...> - 2006-10-31 03:11:50
|
Revision: 17635 http://svn.sourceforge.net/gaim/?rev=17635&view=rev Author: eblanton Date: 2006-10-30 19:11:33 -0800 (Mon, 30 Oct 2006) Log Message: ----------- Fix ^n and ^p to not be backwards Modified Paths: -------------- trunk/console/libgnt/gnttree.c Modified: trunk/console/libgnt/gnttree.c =================================================================== --- trunk/console/libgnt/gnttree.c 2006-10-31 03:01:21 UTC (rev 17634) +++ trunk/console/libgnt/gnttree.c 2006-10-31 03:11:33 UTC (rev 17635) @@ -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, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |