From 13a2dae5153c9071cc35bc2df50722fcdacec71f Mon Sep 17 00:00:00 2001 From: Not Zed Date: Thu, 28 Oct 2004 03:32:43 +0000 Subject: set the default row/col spacings of the table. 2004-10-28 Not Zed * e-config.c (ec_rebuild): set the default row/col spacings of the table. svn path=/trunk/; revision=27747 --- e-util/ChangeLog | 5 +++++ e-util/e-config.c | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'e-util') diff --git a/e-util/ChangeLog b/e-util/ChangeLog index a881ab9163..77dcd4d1d4 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2004-10-28 Not Zed + + * e-config.c (ec_rebuild): set the default row/col spacings of the + table. + 2004-10-20 Not Zed * e-config.c (ec_rebuild): check for empty trailing sections/pages diff --git a/e-util/e-config.c b/e-util/e-config.c index d1c5611a40..ebc7979632 100644 --- a/e-util/e-config.c +++ b/e-util/e-config.c @@ -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, -- cgit v1.2.3