aboutsummaryrefslogtreecommitdiff
path: root/src/editgroup.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-03-10 05:14:30 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-03-10 05:14:30 +0000
commit24a7ea7e84719b5fc05d2fb11aa90e9c6f5539a1 (patch)
tree9c8d538acc4152de9808a93b5316d24359c6900d /src/editgroup.c
parenta671643dfaafb071ddf5b215e837feda36090d07 (diff)
modified the spacing of the statusbar of address book.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1040 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/editgroup.c')
-rw-r--r--src/editgroup.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/editgroup.c b/src/editgroup.c
index 91296283..07473d98 100644
--- a/src/editgroup.c
+++ b/src/editgroup.c
@@ -280,7 +280,6 @@ static void addressbook_edit_group_create( gboolean *cancelled ) {
cancelled);
vbox = gtk_vbox_new( FALSE, 6 );
- gtk_container_set_border_width(GTK_CONTAINER(vbox), BORDER_WIDTH);
gtk_widget_show( vbox );
gtk_container_add( GTK_CONTAINER( window ), vbox );
@@ -289,7 +288,7 @@ static void addressbook_edit_group_create( gboolean *cancelled ) {
gtk_box_pack_start(GTK_BOX(vbox), hboxg, FALSE, FALSE, 0);
/* Data entry area */
- table = gtk_table_new( 1, 3, FALSE);
+ table = gtk_table_new( 1, 2, FALSE);
gtk_box_pack_start(GTK_BOX(hboxg), table, TRUE, TRUE, 0);
gtk_container_set_border_width( GTK_CONTAINER(table), 4 );
gtk_table_set_row_spacings(GTK_TABLE(table), 0);
@@ -369,9 +368,9 @@ static void addressbook_edit_group_create( gboolean *cancelled ) {
/* Status line */
hsbox = gtk_hbox_new(FALSE, 0);
- gtk_box_pack_end(GTK_BOX(vbox), hsbox, FALSE, FALSE, BORDER_WIDTH);
+ gtk_box_pack_end(GTK_BOX(vbox), hsbox, FALSE, FALSE, 0);
statusbar = gtk_statusbar_new();
- gtk_box_pack_start(GTK_BOX(hsbox), statusbar, TRUE, TRUE, BORDER_WIDTH);
+ gtk_box_pack_start(GTK_BOX(hsbox), statusbar, TRUE, TRUE, 0);
/* Button panel */
gtkut_stock_button_set_create(&hbbox, &ok_btn, GTK_STOCK_OK,