From ad576399ac6f38b4b53c59f2db88e231b3a1e9c8 Mon Sep 17 00:00:00 2001 From: Anna Marie Dirks Date: Mon, 21 Apr 2003 19:54:53 +0000 Subject: Corrected border with for Delete Folder dialog. Fixes 41036. 2003-04-21 Anna Marie Dirks * 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. svn path=/trunk/; revision=20910 --- shell/ChangeLog | 10 ++++++++++ shell/e-shell-folder-commands.c | 10 +++++++--- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/shell/ChangeLog b/shell/ChangeLog index aae43847ff..844ab595dd 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,13 @@ +2003-04-21 Anna Marie Dirks + + * 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. + + 2003-04-21 Anna Marie Dirks * e-shell-folder-selection-dialog.c diff --git a/shell/e-shell-folder-commands.c b/shell/e-shell-folder-commands.c index b391ba28f1..a0e8dd3c31 100644 --- a/shell/e-shell-folder-commands.c +++ b/shell/e-shell-folder-commands.c @@ -320,7 +320,7 @@ e_shell_command_copy_folder (EShell *shell, get_folder_name (shell, folder_path)); uri = g_strconcat (E_SHELL_URI_PREFIX, folder_path, NULL); - folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, _("Copy folder"), + folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, _("Copy Folder"), caption, uri, NULL, TRUE); g_free (caption); @@ -364,7 +364,7 @@ e_shell_command_move_folder (EShell *shell, get_folder_name (shell, folder_path)); uri = g_strconcat (E_SHELL_URI_PREFIX, folder_path, NULL); - folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, _("Move folder"), + folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, _("Move Folder"), caption, uri, NULL, TRUE); g_free (caption); @@ -408,6 +408,10 @@ delete_dialog (EShellView *shell_view, const char *folder_name) gtk_dialog_add_button (GTK_DIALOG (dialog), GTK_STOCK_DELETE, GTK_RESPONSE_OK); gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK); + + gtk_container_set_border_width (GTK_CONTAINER (dialog), 6); + + gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 6); title = g_strdup_printf (_("Delete \"%s\""), folder_name); gtk_window_set_title (GTK_WINDOW (dialog), title); @@ -537,7 +541,7 @@ e_shell_command_rename_folder (EShell *shell, const char *reason; new_name = e_request_string (shell_view != NULL ? GTK_WINDOW (shell_view) : NULL, - _("Rename folder"), prompt, old_name); + _("Rename Folder"), prompt, old_name); if (new_name == NULL) return; -- cgit