From 18ed4622acad91021976435f693fd560098432c5 Mon Sep 17 00:00:00 2001 From: Luis Medinas Date: Wed, 29 Sep 2010 12:26:52 +0100 Subject: [PATCH] Add default activation on entry. Fixes bgo#630884 - Zenity --password dialog doesn't have a default action --- src/password.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/password.c b/src/password.c index 00896ea..3d9311a 100644 --- a/src/password.c +++ b/src/password.c @@ -123,6 +123,8 @@ void zenity_password_dialog (ZenityData *data, ZenityPasswordData *password_data password_data->entry_password = gtk_entry_new(); gtk_entry_set_visibility(GTK_ENTRY(password_data->entry_password), FALSE); + gtk_entry_set_activates_default (GTK_ENTRY(password_data->entry_password), + TRUE); gtk_box_pack_start(GTK_BOX(vbox_entries), password_data->entry_password, TRUE,