[evolution-patches] shell patch for settings dialog padding



Simple, silly patch. This completes the HIGification of the settings
dialog's shell.

thanks, 
Anna



-- 
Anna Marie Dirks <anna ximian com>
Index: shell/ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/shell/ChangeLog,v
retrieving revision 1.1276
diff -u -u -w -r1.1276 ChangeLog
--- shell/ChangeLog	18 May 2003 00:48:03 -0000	1.1276
+++ shell/ChangeLog	19 May 2003 17:06:40 -0000
@@ -1,3 +1,9 @@
+2003-05-19  Anna Marie Dirks  <anna ximian com>
+
+	* e-corba-config-page.c: Remove some padding which I incorrectly
+	added to the wrong vbox. This shoulda been fixed in 
+	widgets/misc/e-multi-config-dialog.c . (And it is, now.) 
+
 2003-05-17  Ettore Perazzoli  <ettore ximian com>
 
 	* e-storage-set-view.c (e_storage_set_view_set_show_checkboxes):
Index: shell/e-corba-config-page.c
===================================================================
RCS file: /cvs/gnome/evolution/shell/e-corba-config-page.c,v
retrieving revision 1.8
diff -u -u -w -r1.8 e-corba-config-page.c
--- shell/e-corba-config-page.c	23 Apr 2003 19:16:18 -0000	1.8
+++ shell/e-corba-config-page.c	19 May 2003 17:06:40 -0000
@@ -231,7 +231,6 @@
 	control_widget = bonobo_widget_new_control_from_objref (control, CORBA_OBJECT_NIL);
 	gtk_widget_show (control_widget);
 	gtk_container_add (GTK_CONTAINER (corba_config_page), control_widget);
-	gtk_container_set_border_width (GTK_CONTAINER (corba_config_page), 6); 
 
 	setup_listener (corba_config_page, corba_object);
 
Index: widgets/misc/ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/widgets/misc/ChangeLog,v
retrieving revision 1.221
diff -u -u -w -r1.221 ChangeLog
--- widgets/misc/ChangeLog	19 May 2003 13:54:21 -0000	1.221
+++ widgets/misc/ChangeLog	19 May 2003 17:06:41 -0000
@@ -1,3 +1,9 @@
+2003-05-19  Anna Marie Dirks  <anna ximian com>
+
+	* e-multi-config-dialog.c (init): Added HIG-appropriate spacing/
+	padding to the main hbox into which the icons and page widgets 
+	are packed.
+
 2003-05-19  Larry Ewing  <lewing ximian com>
 
 	* e-charset-picker.c: port to GtkDialog.
Index: widgets/misc/e-multi-config-dialog.c
===================================================================
RCS file: /cvs/gnome/evolution/widgets/misc/e-multi-config-dialog.c,v
retrieving revision 1.24
diff -u -u -w -r1.24 e-multi-config-dialog.c
--- widgets/misc/e-multi-config-dialog.c	23 Apr 2003 19:17:54 -0000	1.24
+++ widgets/misc/e-multi-config-dialog.c	19 May 2003 17:06:41 -0000
@@ -110,8 +110,7 @@
 {
 	GtkWidget *vbox;
 
-	vbox = gtk_vbox_new (FALSE, 3);
-	gtk_container_set_border_width (GTK_CONTAINER (vbox), 6);
+	vbox = gtk_vbox_new (FALSE, 0);
 
 #if 0
 	label = e_clipped_label_new (description);
@@ -366,7 +365,8 @@
 	ECell *text;
 	ECell *vbox;
 
-	hbox = gtk_hbox_new (FALSE, 2);
+	hbox = gtk_hbox_new (FALSE, 6);
+	gtk_container_set_border_width (GTK_CONTAINER (hbox), 6); 
 	dialog_vbox = GTK_DIALOG (multi_config_dialog)->vbox;
 	gtk_box_set_spacing (GTK_BOX (dialog_vbox), 6); 
 	


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]