diff options
author | Michel Dänzer <michel@daenzer.net> | 2013-02-08 19:36:38 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-02-09 01:26:48 +0800 |
commit | eb9e9279262050117e75547bc5ce200ac92c24fb (patch) | |
tree | b3210c08b0920832face1fce796c0d3731d97a7d /em-format | |
parent | 1214f942cc9fd61a3caa2a13d00f0c0a46197cb2 (diff) | |
download | gsoc2013-evolution-eb9e9279262050117e75547bc5ce200ac92c24fb.tar.gz gsoc2013-evolution-eb9e9279262050117e75547bc5ce200ac92c24fb.tar.zst gsoc2013-evolution-eb9e9279262050117e75547bc5ce200ac92c24fb.zip |
Bug #683867 - Schedule actions with higher idle priority
Diffstat (limited to 'em-format')
-rw-r--r-- | em-format/e-mail-parser.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/em-format/e-mail-parser.c b/em-format/e-mail-parser.c index 359efe7d9b..f2832b1f03 100644 --- a/em-format/e-mail-parser.c +++ b/em-format/e-mail-parser.c @@ -723,9 +723,10 @@ e_mail_parser_wrap_as_attachment (EMailParser *parser, } /* e_attachment_load_async must be called from main thread */ - g_idle_add ( + g_idle_add_full (G_PRIORITY_HIGH, (GSourceFunc) load_attachment_idle, - g_object_ref (empa->attachment)); + g_object_ref (empa->attachment), + NULL); if (size != 0) { GFileInfo *fileinfo; |