set the default row/col spacings of the table.

2004-10-28  Not Zed  <NotZed@Ximian.com>

        * e-config.c (ec_rebuild): set the default row/col spacings of the
        table.

svn path=/trunk/; revision=27747
This commit is contained in:
Not Zed
2004-10-28 03:32:43 +00:00
committed by Michael Zucci
parent 55f40ab40c
commit 13a2dae515
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-10-28 Not Zed <NotZed@Ximian.com>
* e-config.c (ec_rebuild): set the default row/col spacings of the
table.
2004-10-20 Not Zed <NotZed@Ximian.com>
* e-config.c (ec_rebuild): check for empty trailing sections/pages

View File

@ -652,8 +652,11 @@ ec_rebuild(EConfig *emp)
if (item->type == E_CONFIG_SECTION)
section = gtk_vbox_new(FALSE, 6);
else
else {
section = gtk_table_new(1, 1, FALSE);
gtk_table_set_row_spacings((GtkTable *)section, 6);
gtk_table_set_col_spacings((GtkTable *)section, 6);
}
frame = g_object_new(gtk_frame_get_type(),
"shadow_type", GTK_SHADOW_NONE,