Mercurial > pidgin
changeset 22810:95308e1b47d1
ctrl-x to open context menus. F11 was such a poor choice for this.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Fri, 02 May 2008 16:06:03 +0000 |
parents | 08bb9d490f38 |
children | 158dedbfd5f1 |
files | ChangeLog finch/libgnt/gntwidget.c |
diffstat | 2 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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;