diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/entry.c | 20 | ||||
-rw-r--r-- | src/zenity.glade | 3 |
2 files changed, 2 insertions, 21 deletions
diff --git a/src/entry.c b/src/entry.c index 69822823..c2570e0a 100644 --- a/src/entry.c +++ b/src/entry.c @@ -26,7 +26,6 @@ #include "util.h" static void zenity_entry_dialog_response (GtkWidget *widget, int response, gpointer data); -static void zenity_entry_response (GtkWidget *widget, gpointer data); static GtkWidget *entry; @@ -69,9 +68,6 @@ zenity_entry (ZenityData *data, ZenityEntryData *entry_data) entry = glade_xml_get_widget (glade_dialog, "zenity_entry_input"); - g_signal_connect (G_OBJECT (entry), "activate", - G_CALLBACK (zenity_entry_response), data); - if (glade_dialog) g_object_unref (glade_dialog); @@ -88,22 +84,6 @@ zenity_entry (ZenityData *data, ZenityEntryData *entry_data) } static void -zenity_entry_response (GtkWidget *widget, gpointer data) -{ - ZenityData *zen_data = data; - const gchar *text; - - zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK); - - text = gtk_entry_get_text (GTK_ENTRY (entry)); - - if (text != NULL) - g_print ("%s\n", text); - - gtk_main_quit (); -} - -static void zenity_entry_dialog_response (GtkWidget *widget, int response, gpointer data) { ZenityData *zen_data = data; diff --git a/src/zenity.glade b/src/zenity.glade index c83eff02..dd396322 100644 --- a/src/zenity.glade +++ b/src/zenity.glade @@ -432,6 +432,7 @@ <widget class="GtkButton" id="zenity_entry_ok_button"> <property name="visible">True</property> <property name="can_default">True</property> + <property name="has_default">True</property> <property name="can_focus">True</property> <property name="label">gtk-ok</property> <property name="use_stock">True</property> @@ -496,7 +497,7 @@ <property name="text" translatable="yes"></property> <property name="has_frame">True</property> <property name="invisible_char" translatable="yes">*</property> - <property name="activates_default">False</property> + <property name="activates_default">True</property> </widget> <packing> <property name="padding">0</property> |