aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-folder-creation-dialog.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/e-shell-folder-creation-dialog.c')
-rw-r--r--shell/e-shell-folder-creation-dialog.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/shell/e-shell-folder-creation-dialog.c b/shell/e-shell-folder-creation-dialog.c
index ea81bfdc58..84f8fce403 100644
--- a/shell/e-shell-folder-creation-dialog.c
+++ b/shell/e-shell-folder-creation-dialog.c
@@ -86,6 +86,7 @@ async_create_cb (EStorageSet *storage_set,
dialog_data = (DialogData *) data;
if (result == E_STORAGE_OK) {
+ /* Success! Tell the callback of this, then return */
if (dialog_data->result_callback != NULL)
(* dialog_data->result_callback) (dialog_data->shell,
E_SHELL_FOLDER_CREATION_DIALOG_RESULT_SUCCESS,
@@ -93,8 +94,19 @@ async_create_cb (EStorageSet *storage_set,
dialog_data->result_callback_data);
gtk_widget_destroy (dialog_data->dialog);
return;
+ } else if (result == E_STORAGE_EXISTS) {
+ e_storage_set_view_set_current_folder (E_STORAGE_SET_VIEW (dialog_data->storage_set_view),
+ dialog_data->folder_path);
}
+ /* Tell the callback something failed, then popup a dialog
+ explaining how it failed */
+ if (dialog_data->result_callback != NULL)
+ (* dialog_data->result_callback) (dialog_data->shell,
+ E_SHELL_FOLDER_CREATION_DIALOG_RESULT_FAIL,
+ dialog_data->folder_path,
+ dialog_data->result_callback_data);
+
e_notice (GTK_WINDOW (dialog_data->dialog), GNOME_MESSAGE_BOX_ERROR,
_("Cannot create the specified folder:\n%s"),
e_storage_result_to_string (result));