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 /modules | |
parent | eb9e9279262050117e75547bc5ce200ac92c24fb (diff) | |
download | gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar.gz gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar.bz2 gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar.lz gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar.xz gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.tar.zst gsoc2013-evolution-9c6a7673b80268d96eb007b3273b26d5422f48a1.zip |
Add comments around g_idle_add() changes
Diffstat (limited to 'modules')
-rw-r--r-- | modules/itip-formatter/itip-view.c | 1 | ||||
-rw-r--r-- | modules/settings/e-settings-mail-reader.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/modules/itip-formatter/itip-view.c b/modules/itip-formatter/itip-view.c index 6f72c9bda2..c1712ab1e8 100644 --- a/modules/itip-formatter/itip-view.c +++ b/modules/itip-formatter/itip-view.c @@ -5705,6 +5705,7 @@ view_response_cb (ItipView *view, send_item (pitip, view); break; case ITIP_VIEW_RESPONSE_OPEN: + /* schedule with priority higher than gtk+ uses for animations (check docs for G_PRIORITY_HIGH_IDLE) */ g_idle_add_full (G_PRIORITY_DEFAULT, idle_open_cb, pitip, NULL); return; default: diff --git a/modules/settings/e-settings-mail-reader.c b/modules/settings/e-settings-mail-reader.c index 360ce321d3..6c88e8f64f 100644 --- a/modules/settings/e-settings-mail-reader.c +++ b/modules/settings/e-settings-mail-reader.c @@ -85,6 +85,7 @@ settings_mail_reader_constructed (GObject *object) { /* Bind properties to settings from an idle callback so the * EMailReader interface has a chance to be initialized first. */ + /* schedule with priority higher than gtk+ uses for animations (check docs for G_PRIORITY_HIGH_IDLE) */ g_idle_add_full ( G_PRIORITY_DEFAULT, (GSourceFunc) settings_mail_reader_idle_cb, |