# HG changeset patch # User Sadrul Habib Chowdhury # Date 1188867003 0 # Node ID 1a0fabe867bef968d4cfab9debeb9f8dfeaab657 # Parent d47bfe67552a35c56a95d8f6dbf8bd7273d6e001 And don't show everything here either. diff -r d47bfe67552a -r 1a0fabe867be pidgin/gtkrequest.c --- a/pidgin/gtkrequest.c Tue Sep 04 00:39:12 2007 +0000 +++ b/pidgin/gtkrequest.c Tue Sep 04 00:50:03 2007 +0000 @@ -368,6 +368,8 @@ data->u.input.multiline = multiline; data->u.input.hint = g_strdup(hint); + gtk_widget_show_all(hbox); + if ((data->u.input.hint != NULL) && (!strcmp(data->u.input.hint, "html"))) { GtkWidget *frame; @@ -429,13 +431,14 @@ gtk_entry_set_invisible_char(GTK_ENTRY(entry), PIDGIN_INVISIBLE_CHAR); } } + gtk_widget_show_all(vbox); } pidgin_set_accessible_label (entry, label); data->u.input.entry = entry; /* Show everything. */ - gtk_widget_show_all(dialog); + gtk_widget_show(dialog); return data; }