changeset 22788:158dedbfd5f1

merge of 'a5c86f336638811bfef4a0969f3d8d2d6b85520f' and 'ebc5ac66e700f6c67e30069ee2ebd4bb61f82ec8'
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Fri, 02 May 2008 16:07:12 +0000
parents 95308e1b47d1 (diff) 7883ed211f3e (current diff)
children b4a0f4b32ba5 862382aa6086
files
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri May 02 06:15:33 2008 +0000
+++ b/ChangeLog	Fri May 02 16:07:12 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 06:15:33 2008 +0000
+++ b/finch/libgnt/gntwidget.c	Fri May 02 16:07:12 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;