aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-07 12:36:26 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-07 12:36:26 +0800
commit48ad64875b482b16f35de414f51b37533ca506bb (patch)
tree314bee7cd653f496959bb91db3753a7bd885219f /mail/message-list.c
parent13dfba8729e2105f6a9e8f3d01e6c21d30cfb13f (diff)
downloadgsoc2013-evolution-48ad64875b482b16f35de414f51b37533ca506bb.tar
gsoc2013-evolution-48ad64875b482b16f35de414f51b37533ca506bb.tar.gz
gsoc2013-evolution-48ad64875b482b16f35de414f51b37533ca506bb.tar.bz2
gsoc2013-evolution-48ad64875b482b16f35de414f51b37533ca506bb.tar.lz
gsoc2013-evolution-48ad64875b482b16f35de414f51b37533ca506bb.tar.xz
gsoc2013-evolution-48ad64875b482b16f35de414f51b37533ca506bb.tar.zst
gsoc2013-evolution-48ad64875b482b16f35de414f51b37533ca506bb.zip
** See #58017.
2004-05-07 Not Zed <NotZed@Ximian.com> ** See #58017. * message-list.c (mail_regen_list): use thread_queued, so we don't regen out of order. * em-folder-view.c (emfv_list_message_selected): use the queue thread so we don't get messages out of order. * mail-ops.c (mail_transfer_messages): use thread_queued_slow. (mail_prep_offline): and here too. svn path=/trunk/; revision=25819
Diffstat (limited to 'mail/message-list.c')
-rw-r--r--mail/message-list.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 9ae5673bd2..252957445e 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -3425,7 +3425,8 @@ mail_regen_list (MessageList *ml, const char *search, const char *hideexpr, Came
ml->regen = g_list_prepend(ml->regen, m);
- e_thread_put (mail_thread_new, (EMsg *)m);
+ /* TODO: we should manage our own thread stuff, would make cancelling outstanding stuff easier */
+ e_thread_put (mail_thread_queued, (EMsg *)m);
}