aboutsummaryrefslogtreecommitdiffstats
path: root/em-format
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-02-08 20:03:26 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-02-08 20:03:26 +0800
commit6ba0a6a95bc68ea6bb49b4b2d623e3ea60ba6d79 (patch)
treeec63b01e51834492c41ce996398631c7c68fa7e5 /em-format
parent2b507716b257e6ef98dae8463180dbe718eb7b64 (diff)
downloadgsoc2013-evolution-6ba0a6a95bc68ea6bb49b4b2d623e3ea60ba6d79.tar
gsoc2013-evolution-6ba0a6a95bc68ea6bb49b4b2d623e3ea60ba6d79.tar.gz
gsoc2013-evolution-6ba0a6a95bc68ea6bb49b4b2d623e3ea60ba6d79.tar.bz2
gsoc2013-evolution-6ba0a6a95bc68ea6bb49b4b2d623e3ea60ba6d79.tar.lz
gsoc2013-evolution-6ba0a6a95bc68ea6bb49b4b2d623e3ea60ba6d79.tar.xz
gsoc2013-evolution-6ba0a6a95bc68ea6bb49b4b2d623e3ea60ba6d79.tar.zst
gsoc2013-evolution-6ba0a6a95bc68ea6bb49b4b2d623e3ea60ba6d79.zip
Revert "Bug #683867 - Schedule actions with higher idle priority"
This reverts commit 2b507716b257e6ef98dae8463180dbe718eb7b64. The commit contains not a single comment as to why these custom priority values are being used. The rationale needs to be documented in the code, either at each call point or preferrably at a centralized priority value definition.
Diffstat (limited to 'em-format')
-rw-r--r--em-format/e-mail-parser.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/em-format/e-mail-parser.c b/em-format/e-mail-parser.c
index f2832b1f03..359efe7d9b 100644
--- a/em-format/e-mail-parser.c
+++ b/em-format/e-mail-parser.c
@@ -723,10 +723,9 @@ e_mail_parser_wrap_as_attachment (EMailParser *parser,
}
/* e_attachment_load_async must be called from main thread */
- g_idle_add_full (G_PRIORITY_HIGH,
+ g_idle_add (
(GSourceFunc) load_attachment_idle,
- g_object_ref (empa->attachment),
- NULL);
+ g_object_ref (empa->attachment));
if (size != 0) {
GFileInfo *fileinfo;