From 381a6366385ca168f6a169ab57c66d55cb46960e Mon Sep 17 00:00:00 2001 From: Chenthill Palanisamy Date: Thu, 25 Nov 2004 06:36:08 +0000 Subject: Set the row and column spacings as tweleve while creating the table to 2004-11-25 Chenthill Palanisamy * e-config.c (ec_rebuild): Set the row and column spacings as tweleve while creating the table to make it HIG compliant. svn path=/trunk/; revision=27985 --- e-util/e-config.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'e-util/e-config.c') diff --git a/e-util/e-config.c b/e-util/e-config.c index f4e3493c66..03f853cd13 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 (section, 12); + gtk_table_set_col_spacings (section, 12); + } frame = g_object_new(gtk_frame_get_type(), "shadow_type", GTK_SHADOW_NONE, -- cgit