Mercurial > pidgin
changeset 28566:691562edffcd
Missed some widgets in that last one.
author | John Bailey <rekkanoryo@rekkanoryo.org> |
---|---|
date | Mon, 16 Nov 2009 05:33:14 +0000 |
parents | 3a32a86ffdb0 |
children | b182d2e2fcce 97fcfefdbda7 |
files | pidgin/gtkprefs.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/gtkprefs.c Mon Nov 16 05:27:32 2009 +0000 +++ b/pidgin/gtkprefs.c Mon Nov 16 05:33:14 2009 +0000 @@ -2045,6 +2045,7 @@ hbox = gtk_hbox_new(FALSE, PIDGIN_HIG_BOX_SPACE); gtk_container_add(GTK_CONTAINER(vbox), hbox); + gtk_widget_show(hbox); label = gtk_label_new(_("Browser preferences are configured in GNOME preferences")); gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); @@ -2057,6 +2058,7 @@ G_CALLBACK(browser_button_clicked_cb), NULL); gtk_box_pack_start(GTK_BOX(hbox), browser_button, FALSE, FALSE, 0); gtk_widget_show(browser_button); + gtk_widget_show(hbox); gtk_widget_show(vbox); gtk_widget_show(ret); @@ -2137,6 +2139,7 @@ label = gtk_label_new(_("Proxy preferences are configured in GNOME preferences")); gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); gtk_widget_show(label); + gtk_widget_show(hbox); hbox = gtk_hbox_new(FALSE, PIDGIN_HIG_BOX_SPACE); gtk_container_add(GTK_CONTAINER(vbox), hbox); @@ -2145,6 +2148,7 @@ G_CALLBACK(proxy_button_clicked_cb), NULL); gtk_box_pack_start(GTK_BOX(hbox), proxy_button, FALSE, FALSE, 0); gtk_widget_show(proxy_button); + gtk_widget_show(hbox); gtk_widget_show(vbox); gtk_widget_show(ret);