aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-10-09 06:28:17 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-10-09 06:28:17 +0000
commit9442a550896bbc164a13c8e2f25d9674ca86fd2a (patch)
tree188bf291b0c0d9baa3f199ddd6e7832652278384
parente20034ceb52cf26abfbc50450e5938e9a478d7b3 (diff)
made send dialog non-modal.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2281 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog4
-rw-r--r--src/send_message.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 396d97a0..180bf5df 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-10-09
+
+ * src/send_message.c: made send dialog non-modal.
+
2009-10-08
* src/query_search.c: destroy async queue when finished.
diff --git a/src/send_message.c b/src/send_message.c
index e2527292..dbce695d 100644
--- a/src/send_message.c
+++ b/src/send_message.c
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2008 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2009 Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -906,7 +906,7 @@ static SendProgressDialog *send_progress_dialog_create(void)
G_CALLBACK(send_cancel_button_cb), dialog);
g_signal_connect(G_OBJECT(progress->window), "delete_event",
G_CALLBACK(gtk_true), NULL);
- gtk_window_set_modal(GTK_WINDOW(progress->window), TRUE);
+ /* gtk_window_set_modal(GTK_WINDOW(progress->window), TRUE); */
manage_window_set_transient(GTK_WINDOW(progress->window));
progress_dialog_set_value(progress, 0.0);