aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-startup-wizard.c
diff options
context:
space:
mode:
authorAnna Marie Dirks <anna@ximian.com>2001-11-06 07:15:30 +0800
committerAnna Dirks <anna@src.gnome.org>2001-11-06 07:15:30 +0800
commit2a716127b6c2ec557a411f57e64cfd4678e0d081 (patch)
tree62a4424c1cc271762f9a3889fe15bcfec5da73f9 /shell/e-shell-startup-wizard.c
parentcdd8a5be80319480840cb62521ee157b41319950 (diff)
downloadgsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.tar
gsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.tar.gz
gsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.tar.bz2
gsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.tar.lz
gsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.tar.xz
gsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.tar.zst
gsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.zip
Fixed spacing and alignment probelms. (See bug #14281)
2001-11-05 Anna Marie Dirks <anna@ximian.com> * e-shell-importer.c (prepare_intelligent_page): Fixed spacing and alignment probelms. (See bug #14281) * e-shell-startup-wizard.c (prepare_importer_page): Fixed spacing and alignment problems. (See bug #14281) svn path=/trunk/; revision=14599
Diffstat (limited to 'shell/e-shell-startup-wizard.c')
-rw-r--r--shell/e-shell-startup-wizard.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/shell/e-shell-startup-wizard.c b/shell/e-shell-startup-wizard.c
index 0176257478..c2962993d8 100644
--- a/shell/e-shell-startup-wizard.c
+++ b/shell/e-shell-startup-wizard.c
@@ -712,10 +712,13 @@ prepare_importer_page (GnomeDruidPage *page,
str = g_strdup_printf (_("From %s:"), id->name);
label = gtk_label_new (str);
g_free (str);
+
+ gtk_misc_set_alignment (GTK_MISC (label), 0, .5);
+
gtk_table_attach (GTK_TABLE (table), label, 0, 1, running - 1,
- running, 0, 0, 0, 0);
+ running, GTK_FILL, 0, 0, 0);
gtk_table_attach (GTK_TABLE (table), id->widget, 1, 2,
- running - 1, running, 0, 0, 0, 0);
+ running - 1, running, GTK_FILL, 0, 3, 0);
gtk_widget_show_all (table);
gtk_box_pack_start (GTK_BOX (data->import_page->vbox), table,
@@ -751,11 +754,11 @@ make_importer_page (SWData *data)
page->vbox = GNOME_DRUID_PAGE_STANDARD (page->page)->vbox;
gtk_container_set_border_width (GTK_CONTAINER (page->vbox), 4);
- label = gtk_label_new (_("Please select the information\nthat you would like to import"));
- gtk_box_pack_start (GTK_BOX (page->vbox), label, FALSE, FALSE, 0);
+ label = gtk_label_new (_("Please select the information that you would like to import:"));
+ gtk_box_pack_start (GTK_BOX (page->vbox), label, FALSE, FALSE, 3);
sep = gtk_hseparator_new ();
- gtk_box_pack_start (GTK_BOX (page->vbox), sep, FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (page->vbox), sep, FALSE, FALSE, 3);
page->prepared = FALSE;
return page;