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:
@ -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
|
||||
|
||||
@ -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,
|
||||
|
||||
Reference in New Issue
Block a user