[evolution-patches] patch for fixing 41022, 41046, and partial fixing 41025



This patch corrects the spacing/padding of the folder selection dialog,
which is oft used for, uh, selecting folders in the context of moving,
copying and adding them.


-- 
Anna Marie Dirks <anna ximian com>
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/shell/ChangeLog,v
retrieving revision 1.1243
diff -u -r1.1243 ChangeLog
--- ChangeLog	17 Apr 2003 20:55:21 -0000	1.1243
+++ ChangeLog	18 Apr 2003 18:14:12 -0000
@@ -1,3 +1,44 @@
+2003-04-18  Anna Marie Dirks  <anna ximian com>
+
+	* glade/evolution-startup-wizard.glade: Added spacing/padding to 
+	first-run dialog. Fixes 41242. 
+
+	* glade/e-shell-folder-creation-dialog.glade: Misc HIG-related tweaks,
+	mostly spacing and padding related. Fixes 41008. 
+
+	* glade/e-folder-list.glade: Added icons and stock buttons to 
+	the autocompletion page of the settings dialog. Fixes 41145.
+
+	* glade/e-shell-config-default-folders.glade: Added appropriate
+	spacing/padding to the default folder pages of the settings dialog. 
+	Partial fix for 41128.
+
+	* glade/e-active-connection-dialog.glade: Fixed padding/spacing/caps
+	of the "Go Offline" dialog. Fixes 41225 and 41227. 
+
+	* e-shell-folder-selection-dialog.c (e_shell_folder_selection_dialog_construct): Added appropriate border width to the folder selection dialog. Fixes 	41022, partially fixes 41025. 
+
+	* e-shell-folder-creation-dialog.c (add_storage_set_view): Added
+	appropriate spacing to the main vbox of the folder creation dialog.
+	Partially fixes 41008.
+
+	
+	* 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
+	Folder" window title. Partial fix for 41025. 
+	(e_shell_command_move_folder): Corrected the capitalization of the
+	"Move Folder" dialog. Fixes 41024. 
+
+	* e-shortcuts-view.c
+	(destroy_group_cb): Set the border width of the message dialog 
+	to 6. Also corrected the capitalization for "Delete Shortcut 
+	Dialog".
+	(show_new_group_dialog): Fixed the title of "Create New Shortcut
+	Group"
+	(rename_shortcut_cb): Corrected the label capitalization for 
+	Rename dialog. 
+
 2003-04-17  Dan Winship  <danw ximian com>
 
 	* e-shell-folder-creation-dialog.c (add_folder_types): If the
Index: e-shell-folder-selection-dialog.c
===================================================================
RCS file: /cvs/gnome/evolution/shell/e-shell-folder-selection-dialog.c,v
retrieving revision 1.57
diff -u -r1.57 e-shell-folder-selection-dialog.c
--- e-shell-folder-selection-dialog.c	8 Apr 2003 14:50:48 -0000	1.57
+++ e-shell-folder-selection-dialog.c	18 Apr 2003 18:14:12 -0000
@@ -403,6 +403,7 @@
 	gtk_window_set_default_size (GTK_WINDOW (folder_selection_dialog), 350, 300);
 	gtk_window_set_modal (GTK_WINDOW (folder_selection_dialog), TRUE);
 	gtk_window_set_title (GTK_WINDOW (folder_selection_dialog), title);
+	gtk_container_set_border_width (GTK_CONTAINER (folder_selection_dialog), 6);
 
 	if (allow_creation)
 		gtk_dialog_add_buttons (GTK_DIALOG (folder_selection_dialog),
@@ -425,10 +426,15 @@
 
 	if (caption != NULL) {
 		caption_label = gtk_label_new (caption);
+		gtk_label_set_justify (GTK_LABEL (caption_label), GTK_JUSTIFY_LEFT); 
 		gtk_widget_show (caption_label);
 
 		gtk_box_pack_start (GTK_BOX (GTK_DIALOG (folder_selection_dialog)->vbox),
-				    caption_label, FALSE, TRUE, 2);
+				    caption_label, FALSE, TRUE, 6);
+		gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (folder_selection_dialog)->vbox),
+				     6);
+
+
 	}
 
 	/* Set up the storage set and its view.  */
@@ -473,10 +479,13 @@
 					GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
 
 	gtk_container_add (GTK_CONTAINER (scrolled_window), priv->storage_set_view);
-
+        
 	gtk_box_pack_start (GTK_BOX (GTK_DIALOG (folder_selection_dialog)->vbox),
-			    scrolled_window, TRUE, TRUE, 2);
-
+			    scrolled_window, TRUE, TRUE, 6);
+	gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (folder_selection_dialog)->vbox), 6); 
+	
+	gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (folder_selection_dialog)->vbox), 6);
+	
 	gtk_widget_show (priv->storage_set_view);
 	gtk_widget_show (scrolled_window);
 


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