aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/gui/component/addressbook-config.c3
2 files changed, 9 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 8fb8cec789..512b40c531 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,10 @@
+2002-11-24 Chris Toshok <toshok@ximian.com>
+
+ * gui/component/addressbook-config.c (query_for_supported_bases):
+ show the etable.
+ (addressbook_add_server_druid): show_all before returning the
+ dialog, so the druid shows up.
+
2002-11-23 Chris Toshok <toshok@ximian.com>
[ roll forward from the 1.2 branch. fixes #25540, part of #29630,
diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c
index 68aed30a07..3cf0cd2a62 100644
--- a/addressbook/gui/component/addressbook-config.c
+++ b/addressbook/gui/component/addressbook-config.c
@@ -707,6 +707,7 @@ query_for_supported_bases (GtkWidget *button, AddressbookSourceDialog *sdialog)
dialog = glade_xml_get_widget (sdialog->gui, "supported-bases-dialog");
supported_bases_table = glade_xml_get_widget (sdialog->gui, "supported-bases-table");
+ gtk_widget_show (supported_bases_table);
selection_model = e_table_get_selection_model (e_table_scrolled_get_table (E_TABLE_SCROLLED(supported_bases_table)));
model = g_object_get_data (G_OBJECT (supported_bases_table), "model");
@@ -1089,7 +1090,7 @@ addressbook_add_server_druid (AddressbookDialog *dialog)
gtk_window_set_modal (GTK_WINDOW (sdialog->window), TRUE);
- gtk_widget_show (sdialog->window);
+ gtk_widget_show_all (sdialog->window);
return sdialog;
}