diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/itip-formatter/itip-view.c | 6 | ||||
-rw-r--r-- | modules/settings/e-settings-mail-reader.c | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/modules/itip-formatter/itip-view.c b/modules/itip-formatter/itip-view.c index c1712ab1e8..d282549e81 100644 --- a/modules/itip-formatter/itip-view.c +++ b/modules/itip-formatter/itip-view.c @@ -5705,8 +5705,10 @@ 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); + /* Prioritize ahead of GTK+ redraws. */ + g_idle_add_full ( + G_PRIORITY_HIGH_IDLE, + idle_open_cb, pitip, NULL); return; default: break; diff --git a/modules/settings/e-settings-mail-reader.c b/modules/settings/e-settings-mail-reader.c index 6c88e8f64f..17ab57b3b8 100644 --- a/modules/settings/e-settings-mail-reader.c +++ b/modules/settings/e-settings-mail-reader.c @@ -84,10 +84,10 @@ static void 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) */ + * EMailReader interface has a chance to be initialized first. + * Prioritize ahead of GTK+ redraws. */ g_idle_add_full ( - G_PRIORITY_DEFAULT, + G_PRIORITY_HIGH_IDLE, (GSourceFunc) settings_mail_reader_idle_cb, g_object_ref (object), (GDestroyNotify) g_object_unref); |