aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-folder-selection-dialog.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2002-09-25 04:05:20 +0800
committerDan Winship <danw@src.gnome.org>2002-09-25 04:05:20 +0800
commitab7d63ce8e057eaa31a1777af0837cd1005e7f44 (patch)
tree09e2af4a666980db356425ce425f7963cfacb17a /shell/e-shell-folder-selection-dialog.c
parent691be386bde8f62cff577977b8da2172de9d10bd (diff)
downloadgsoc2013-evolution-ab7d63ce8e057eaa31a1777af0837cd1005e7f44.tar
gsoc2013-evolution-ab7d63ce8e057eaa31a1777af0837cd1005e7f44.tar.gz
gsoc2013-evolution-ab7d63ce8e057eaa31a1777af0837cd1005e7f44.tar.bz2
gsoc2013-evolution-ab7d63ce8e057eaa31a1777af0837cd1005e7f44.tar.lz
gsoc2013-evolution-ab7d63ce8e057eaa31a1777af0837cd1005e7f44.tar.xz
gsoc2013-evolution-ab7d63ce8e057eaa31a1777af0837cd1005e7f44.tar.zst
gsoc2013-evolution-ab7d63ce8e057eaa31a1777af0837cd1005e7f44.zip
Don't destroy the dialog. It does that itself whenever it emits
* e-shell.c (folder_selection_dialog_folder_selected_cb): Don't destroy the dialog. It does that itself whenever it emits folder_selected. * e-shell-folder-selection-dialog.c (double_click_cb): Don't close the dialog if the user double-clicks a bad folder. Just ignore it (like we do when they click OK on a bad folder). svn path=/trunk/; revision=18205
Diffstat (limited to 'shell/e-shell-folder-selection-dialog.c')
-rw-r--r--shell/e-shell-folder-selection-dialog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-folder-selection-dialog.c b/shell/e-shell-folder-selection-dialog.c
index 5a0296cbbb..f4300a2dd0 100644
--- a/shell/e-shell-folder-selection-dialog.c
+++ b/shell/e-shell-folder-selection-dialog.c
@@ -325,9 +325,9 @@ double_click_cb (EStorageSetView *essv,
gtk_signal_emit (GTK_OBJECT (folder_selection_dialog),
signals[FOLDER_SELECTED],
e_shell_folder_selection_dialog_get_selected_path (folder_selection_dialog));
- }
- gnome_dialog_close (GNOME_DIALOG (folder_selection_dialog));
+ gnome_dialog_close (GNOME_DIALOG (folder_selection_dialog));
+ }
}