# HG changeset patch # User Sadrul Habib Chowdhury # Date 1209744363 0 # Node ID 95308e1b47d1b082b2bb9490a561a5fb9174d8e9 # Parent 08bb9d490f3802bed0f87df1483853ec40cbb067 ctrl-x to open context menus. F11 was such a poor choice for this. diff -r 08bb9d490f38 -r 95308e1b47d1 ChangeLog --- a/ChangeLog Fri May 02 01:29:34 2008 +0000 +++ b/ChangeLog Fri May 02 16:06:03 2008 +0000 @@ -36,6 +36,9 @@ * The Contact Availability Prediction plugin must now be explicitly enabled. Use the --enable-cap argument to configure to enable it. + Finch: + * New default binding ctrl+x to open context menus. + version 2.4.1 (03/31/2008): http://developer.pidgin.im/query?status=closed&milestone=2.4.1 diff -r 08bb9d490f38 -r 95308e1b47d1 finch/libgnt/gntwidget.c --- a/finch/libgnt/gntwidget.c Fri May 02 01:29:34 2008 +0000 +++ b/finch/libgnt/gntwidget.c Fri May 02 16:06:03 2008 +0000 @@ -257,6 +257,7 @@ gnt_bindable_class_register_action(GNT_BINDABLE_CLASS(klass), "context-menu", context_menu, GNT_KEY_POPUP, NULL); gnt_bindable_register_binding(GNT_BINDABLE_CLASS(klass), "context-menu", GNT_KEY_F11, NULL); + gnt_bindable_register_binding(GNT_BINDABLE_CLASS(klass), "context-menu", GNT_KEY_CTRL_X, NULL); gnt_style_read_actions(G_OBJECT_CLASS_TYPE(klass), GNT_BINDABLE_CLASS(klass)); GNTDEBUG;