diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-02-09 05:20:50 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-02-09 05:20:50 +0800 |
commit | 88594ac53a888dac465fc5e2ccb0925cc0c0a49a (patch) | |
tree | 9418c784cfd893df6cc48cbd6711444f2b6e2614 /shell/e-shell-view-menu.c | |
parent | fb6c1a7afb699431ce6860888f423d5c2e7c1c8e (diff) | |
download | gsoc2013-evolution-88594ac53a888dac465fc5e2ccb0925cc0c0a49a.tar.gz gsoc2013-evolution-88594ac53a888dac465fc5e2ccb0925cc0c0a49a.tar.zst gsoc2013-evolution-88594ac53a888dac465fc5e2ccb0925cc0c0a49a.zip |
Change the folder selection dialog so that, when you click on "New"
and create a folder, that folder becomes the default folder when you
go back to the selection dialog.
svn path=/trunk/; revision=8119
Diffstat (limited to 'shell/e-shell-view-menu.c')
-rw-r--r-- | shell/e-shell-view-menu.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index 42b7753197..30b184b2ae 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -278,7 +278,9 @@ command_new_folder (BonoboUIComponent *uih, default_parent_folder = NULL; e_shell_show_folder_creation_dialog (shell, GTK_WINDOW (shell_view), - default_parent_folder); + default_parent_folder, + NULL /* result_callback */, + NULL /* result_callback_data */); } static void @@ -378,7 +380,9 @@ command_create_folder (BonoboUIComponent *uih, else default_folder = NULL; - e_shell_show_folder_creation_dialog (shell, GTK_WINDOW (shell_view), default_folder); + e_shell_show_folder_creation_dialog (shell, GTK_WINDOW (shell_view), default_folder, + NULL /* result_callback */, + NULL /* result_callback_data */); } static void |