aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchenthill@novell.com>2004-11-25 14:36:08 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2004-11-25 14:36:08 +0800
commit381a6366385ca168f6a169ab57c66d55cb46960e (patch)
treeecf73e8a345abf0ca769df6baf54a2b0337d96f8 /e-util
parent9bb1a040f41d58e995400eb1473226051cbdf86a (diff)
downloadgsoc2013-evolution-381a6366385ca168f6a169ab57c66d55cb46960e.tar
gsoc2013-evolution-381a6366385ca168f6a169ab57c66d55cb46960e.tar.gz
gsoc2013-evolution-381a6366385ca168f6a169ab57c66d55cb46960e.tar.bz2
gsoc2013-evolution-381a6366385ca168f6a169ab57c66d55cb46960e.tar.lz
gsoc2013-evolution-381a6366385ca168f6a169ab57c66d55cb46960e.tar.xz
gsoc2013-evolution-381a6366385ca168f6a169ab57c66d55cb46960e.tar.zst
gsoc2013-evolution-381a6366385ca168f6a169ab57c66d55cb46960e.zip
Set the row and column spacings as tweleve while creating the table to
2004-11-25 Chenthill Palanisamy <pchenthill@novell.com> * 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
Diffstat (limited to 'e-util')
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/e-config.c5
2 files changed, 9 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index b8e65ac2fa..cd9a9dc108 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,8 @@
+2004-11-25 Chenthill Palanisamy <pchenthill@novell.com>
+
+ * e-config.c (ec_rebuild): Set the row and column spacings as
+ tweleve while creating the table to make it HIG compliant.
+
2004-11-19 Not Zed <NotZed@Ximian.com>
* e-plugin.c (ep_load): if the plugin fails to load just disable
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,