From 50784b85683f3eaa284aee22e5fc510ee4f11d01 Mon Sep 17 00:00:00 2001 From: Colin Leroy Date: Tue, 17 Feb 2009 12:54:12 +0000 Subject: [PATCH 1/1] 2009-02-17 [colin] 3.7.0cvs67 * src/compose.c Disable controls during queuing --- ChangeLog | 5 +++++ PATCHSETS | 1 + configure.ac | 2 +- src/compose.c | 2 ++ 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ca8f1d255..811600897 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-02-17 [colin] 3.7.0cvs67 + + * src/compose.c + Disable controls during queuing + 2009-02-15 [colin] 3.7.0cvs66 * src/privacy.c diff --git a/PATCHSETS b/PATCHSETS index fc3de1082..62c0dfdb3 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -3728,3 +3728,4 @@ ( cvs diff -u -r 1.5.2.13 -r 1.5.2.14 src/addressitem.h; cvs diff -u -r 1.1.16.5 -r 1.1.16.6 src/export.h; cvs diff -u -r 1.8.2.29 -r 1.8.2.30 src/headerview.c; cvs diff -u -r 1.2.2.5 -r 1.2.2.6 src/headerview.h; cvs diff -u -r 1.3.2.6 -r 1.3.2.7 src/common/version.h.in; cvs diff -u -r 1.1.4.2 -r 1.1.4.3 src/gtk/about.h; cvs diff -u -r 1.5.2.39 -r 1.5.2.40 src/gtk/menu.c; cvs diff -u -r 1.4.2.22 -r 1.4.2.23 src/gtk/menu.h; ) > 3.7.0cvs64.patchset ( cvs diff -u -r 1.207.2.211 -r 1.207.2.212 src/folderview.c; cvs diff -u -r 1.395.2.406 -r 1.395.2.407 src/summaryview.c; ) > 3.7.0cvs65.patchset ( cvs diff -u -r 1.10.2.19 -r 1.10.2.20 src/privacy.c; cvs diff -u -r 1.1.2.25 -r 1.1.2.26 src/plugins/pgpcore/select-keys.c; cvs diff -u -r 1.1.2.61 -r 1.1.2.62 src/plugins/pgpcore/sgpgme.c; ) > 3.7.0cvs66.patchset +( cvs diff -u -r 1.382.2.499 -r 1.382.2.500 src/compose.c; ) > 3.7.0cvs67.patchset diff --git a/configure.ac b/configure.ac index d18a2c3fc..2d859fe10 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=7 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=66 +EXTRA_VERSION=67 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/compose.c b/src/compose.c index 34b4f07be..8a1db79b7 100644 --- a/src/compose.c +++ b/src/compose.c @@ -8923,7 +8923,9 @@ static void compose_send_later_cb(GtkAction *action, gpointer data) gint val; inc_lock(); + compose_allow_user_actions(compose, FALSE); val = compose_queue_sub(compose, NULL, NULL, NULL, TRUE, TRUE); + compose_allow_user_actions(compose, TRUE); inc_unlock(); if (!val) { -- 2.25.1