aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer-select-file.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-12-22 06:45:57 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-12-22 06:45:57 +0800
commitacc9974f8b0f3d96b067bf7203519cd1af8bcd76 (patch)
tree5d55fd9039613b9afdb7932b5cc27e8d60df006a /composer/e-msg-composer-select-file.c
parent630429ee20bb95d23dd3974f76cf60f3e7ceebda (diff)
downloadgsoc2013-evolution-acc9974f8b0f3d96b067bf7203519cd1af8bcd76.tar
gsoc2013-evolution-acc9974f8b0f3d96b067bf7203519cd1af8bcd76.tar.gz
gsoc2013-evolution-acc9974f8b0f3d96b067bf7203519cd1af8bcd76.tar.bz2
gsoc2013-evolution-acc9974f8b0f3d96b067bf7203519cd1af8bcd76.tar.lz
gsoc2013-evolution-acc9974f8b0f3d96b067bf7203519cd1af8bcd76.tar.xz
gsoc2013-evolution-acc9974f8b0f3d96b067bf7203519cd1af8bcd76.tar.zst
gsoc2013-evolution-acc9974f8b0f3d96b067bf7203519cd1af8bcd76.zip
Only cancel the selection dialog if it is currently in use, otherwise
2001-12-21 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer-select-file.c (composer_hide_cb): Only cancel the selection dialog if it is currently in use, otherwise we'll get an extra gtk_main_quit and the mailer will exit :-( svn path=/trunk/; revision=15207
Diffstat (limited to 'composer/e-msg-composer-select-file.c')
-rw-r--r--composer/e-msg-composer-select-file.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/composer/e-msg-composer-select-file.c b/composer/e-msg-composer-select-file.c
index 593fe256cc..79c2084090 100644
--- a/composer/e-msg-composer-select-file.c
+++ b/composer/e-msg-composer-select-file.c
@@ -131,7 +131,8 @@ composer_hide_cb (GtkWidget *widget, gpointer user_data)
FileSelectionInfo *info;
info = (FileSelectionInfo *) user_data;
- cancel (info);
+ if (GTK_WIDGET_VISIBLE (info->widget))
+ cancel (info);
}
/* Setup. */