From a8ed17846fceb8a40fac64bad3bb96963819174f Mon Sep 17 00:00:00 2001 From: Jonny Lamb Date: Tue, 8 Jul 2008 10:58:27 +0000 Subject: [PATCH] Made the Close button the default widget in the contact edit dialog. (Jonny Lamb) Having this Close button the default widget in the contact edit dialog allows one to enter/edit a contact's alias, and press return when finished, instead of TABing one's to Close, or worse, having to use the mouse! Signed-off-by: Jonny Lamb svn path=/trunk/; revision=1207 --- libempathy-gtk/empathy-contact-dialogs.c | 2 ++ libempathy-gtk/empathy-contact-widget.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/libempathy-gtk/empathy-contact-dialogs.c b/libempathy-gtk/empathy-contact-dialogs.c index fd4ad963..7aae812a 100644 --- a/libempathy-gtk/empathy-contact-dialogs.c +++ b/libempathy-gtk/empathy-contact-dialogs.c @@ -192,6 +192,8 @@ empathy_contact_information_dialog_show (EmpathyContact *contact, gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, GTK_RESPONSE_CLOSE); + GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT); + gtk_window_set_default (GTK_WINDOW (dialog), button); gtk_widget_show (button); /* Contact info widget */ diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index b80cef2e..4a29d15d 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -406,6 +406,8 @@ contact_widget_contact_setup (EmpathyContactWidget *information) g_signal_connect (information->widget_alias, "focus-out-event", G_CALLBACK (contact_widget_entry_alias_focus_event_cb), information); + /* Make return activate the window default (the Close button) */ + gtk_entry_set_activates_default (GTK_ENTRY (information->widget_alias), TRUE); } else { information->widget_alias = gtk_label_new (NULL); gtk_label_set_selectable (GTK_LABEL (information->widget_alias), TRUE); -- 2.39.2