diff options
author | Milan Crha <mcrha@redhat.com> | 2013-02-09 01:26:15 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-02-09 01:26:49 +0800 |
commit | 9c6a7673b80268d96eb007b3273b26d5422f48a1 (patch) | |
tree | 4b08cba38bd19383791ec99766d3f6c7e1c9e8cf /libemail-engine/e-mail-utils.c | |
parent | eb9e9279262050117e75547bc5ce200ac92c24fb (diff) | |
download | gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar.gz gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar.zst gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.zip |
Add comments around g_idle_add() changes
Diffstat (limited to 'libemail-engine/e-mail-utils.c')
-rw-r--r-- | libemail-engine/e-mail-utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libemail-engine/e-mail-utils.c b/libemail-engine/e-mail-utils.c index 17e61365db..e7f414a7d9 100644 --- a/libemail-engine/e-mail-utils.c +++ b/libemail-engine/e-mail-utils.c @@ -824,6 +824,7 @@ free_mail_cache_thread (gpointer user_data) e_cancellable_mutex_unlock (&photos_cache_lock); } + /* schedule with priority higher than gtk+ uses for animations (check docs for G_PRIORITY_HIGH_IDLE) */ g_idle_add_full (G_PRIORITY_HIGH, free_mail_cache_idle, user_data, NULL); return NULL; |