changeset 19162:e1678c435944

Reduce some of the paddings.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Fri, 13 Jul 2007 10:59:37 +0000
parents 4521c558796e
children 1e4630ee4b2a
files finch/gntsound.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/finch/gntsound.c	Fri Jul 13 02:25:11 2007 +0000
+++ b/finch/gntsound.c	Fri Jul 13 10:59:37 2007 +0000
@@ -884,8 +884,11 @@
 
 	/* Profiles */
 	splitbox = gnt_hbox_new(FALSE);
+	gnt_box_set_pad(GNT_BOX(splitbox), 0);
+	gnt_box_set_alignment(GNT_BOX(splitbox), GNT_ALIGN_TOP);
 
 	box = gnt_vbox_new(FALSE);
+	gnt_box_set_pad(GNT_BOX(box), 0);
 	gnt_box_add_widget(GNT_BOX(box), gnt_label_new_with_format(_("Profiles"), GNT_TEXT_FLAG_BOLD));
 	pref_dialog->profiles = tree = gnt_tree_new();
 	gnt_tree_set_hash_fns(GNT_TREE(tree), g_str_hash, g_str_equal, g_free);
@@ -918,6 +921,7 @@
 	/* Sound method */
 
 	box = gnt_vbox_new(FALSE);
+	gnt_box_set_pad(GNT_BOX(box), 0);
 
 	pref_dialog->method = cmbox = gnt_combo_box_new();
 	gnt_tree_set_hash_fns(GNT_TREE(GNT_COMBO_BOX(cmbox)->dropdown), g_str_hash, g_str_equal, NULL);