[evolution-patches] fix for #41932



These two patches combined give the settings dialog shell the spacing
and padding it needs to be HIG compliant. These fix bug #41932.

Thanks, 
Anna
-- 
Anna Marie Dirks <anna ximian com>
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/shell/ChangeLog,v
retrieving revision 1.1253
diff -u -r1.1253 ChangeLog
--- ChangeLog	22 Apr 2003 19:49:21 -0000	1.1253
+++ ChangeLog	22 Apr 2003 19:59:36 -0000
@@ -1,4 +1,12 @@
 2003-04-22  Anna Marie Dirks  <anna ximian com>
+
+	* e-shell-settings-dialog.c (init): Add appropriate padding to the
+	EvolutionSettings window. This is another bit of the fix for #41392.
+
+	* e-corba-config-page.c (e_corba_config_page_construct): Add appropriate 	padding to the corba_config_page widget. Partial fix for #41392.
+
+
+2003-04-22  Anna Marie Dirks  <anna ximian com>
 	
 	* e-shortcuts-view.c
 	(destroy_group_cb): Set the border width of the message dialog 
@@ -10,7 +18,6 @@
 	Rename dialog. Fixes 41567.
 
 
-
 2003-04-21  Chris Toshok  <toshok ximian com>
 
 	* e-folder-list.c (e_folder_list_parse_xml): this should never
@@ -24,7 +31,7 @@
 	situations like the one described in #40989.
 
 2003-04-21  Anna Marie Dirks  <anna ximian com>
-
+2
 	* e-shell-folder-commands.c (delete_dialog): Corrected border 
 	with for Delete Folder dialog. Fixes 41036. 
 	(e_shell_command_copy_folder): Corrected capitalization of the "Copy
Index: e-corba-config-page.c
===================================================================
RCS file: /cvs/gnome/evolution/shell/e-corba-config-page.c,v
retrieving revision 1.7
diff -u -r1.7 e-corba-config-page.c
--- e-corba-config-page.c	5 Feb 2003 22:25:15 -0000	1.7
+++ e-corba-config-page.c	22 Apr 2003 19:59:36 -0000
@@ -231,6 +231,7 @@
 	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: e-shell-settings-dialog.c
===================================================================
RCS file: /cvs/gnome/evolution/shell/e-shell-settings-dialog.c,v
retrieving revision 1.25
diff -u -r1.25 e-shell-settings-dialog.c
--- e-shell-settings-dialog.c	26 Mar 2003 05:31:17 -0000	1.25
+++ e-shell-settings-dialog.c	22 Apr 2003 19:59:36 -0000
@@ -341,7 +341,8 @@
 	dialog->priv = priv;
 
 	load_pages (dialog);
-
+	
+	gtk_container_set_border_width (GTK_CONTAINER (dialog), 6); 
 	gtk_window_set_title (GTK_WINDOW (dialog), _("Evolution Settings"));
 }
 
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/widgets/ChangeLog,v
retrieving revision 1.98
diff -u -r1.98 ChangeLog
--- ChangeLog	10 Apr 2003 15:22:12 -0000	1.98
+++ ChangeLog	22 Apr 2003 20:25:11 -0000
@@ -1,3 +1,9 @@
+2003-04-22  Anna Dirks  <anna ximian com> 
+
+	*misc/e-multi-config-dialog.c : add appropriate padding
+	and spacing to the settings dialog. Fixes #41392.
+
+
 2003-04-10  Mike Kestner  <mkestner ximian com>
 
 	* menus/gal-view-menus.c (build menus): add ... to "Define Views"
Index: misc/e-multi-config-dialog.c
===================================================================
RCS file: /cvs/gnome/evolution/widgets/misc/e-multi-config-dialog.c,v
retrieving revision 1.23
diff -u -r1.23 e-multi-config-dialog.c
--- misc/e-multi-config-dialog.c	4 Feb 2003 19:03:02 -0000	1.23
+++ misc/e-multi-config-dialog.c	22 Apr 2003 20:25:12 -0000
@@ -111,7 +111,7 @@
 	GtkWidget *vbox;
 
 	vbox = gtk_vbox_new (FALSE, 3);
-	gtk_container_set_border_width (GTK_CONTAINER (vbox), 3);
+	gtk_container_set_border_width (GTK_CONTAINER (vbox), 6);
 
 #if 0
 	label = e_clipped_label_new (description);
@@ -125,7 +125,7 @@
 	gtk_widget_show (separator);
 #endif
 
-	gtk_box_pack_start (GTK_BOX (vbox), widget, TRUE, TRUE, 0);
+	gtk_box_pack_start (GTK_BOX (vbox), widget, TRUE, TRUE, 0); 
 
 	gtk_widget_show (widget);
 	gtk_widget_show (vbox);
@@ -368,6 +368,8 @@
 
 	hbox = gtk_hbox_new (FALSE, 2);
 	dialog_vbox = GTK_DIALOG (multi_config_dialog)->vbox;
+	gtk_box_set_spacing (GTK_BOX (dialog_vbox), 6); 
+	
 	gtk_container_add (GTK_CONTAINER (dialog_vbox), hbox);
 
 	list_e_table_model = e_table_memory_store_new (columns);


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