diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2009-05-21 16:43:42 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchenthill@novell.com> | 2009-05-21 16:43:42 +0800 |
commit | 45dc56b4735d3727c520a060564433455c6cf378 (patch) | |
tree | 4ef65d9f95348c67997cddfd5fc0fb6d9bfac209 | |
parent | ceb57eb3a8bc04eca26d859ff766130d06cb0e54 (diff) | |
download | gsoc2013-evolution-45dc56b4735d3727c520a060564433455c6cf378.tar.gz gsoc2013-evolution-45dc56b4735d3727c520a060564433455c6cf378.tar.zst gsoc2013-evolution-45dc56b4735d3727c520a060564433455c6cf378.zip |
Show a progress message if the calendar is taking sometime to open.
-rw-r--r-- | plugins/itip-formatter/itip-formatter.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c index c2f64a1a17..04049ef6d5 100644 --- a/plugins/itip-formatter/itip-formatter.c +++ b/plugins/itip-formatter/itip-formatter.c @@ -832,9 +832,12 @@ find_server (struct _itip_puri *pitip, ECalComponent *comp) } } - if (current_source) + if (current_source) { l = sources_conflict; - else { + + pitip->progress_info_id = itip_view_add_lower_info_item (ITIP_VIEW (pitip->view), ITIP_VIEW_INFO_ITEM_TYPE_PROGRESS, + _("Opening the calendar. Please wait..")); + } else { pitip->progress_info_id = itip_view_add_lower_info_item (ITIP_VIEW (pitip->view), ITIP_VIEW_INFO_ITEM_TYPE_PROGRESS, _("Searching for an existing version of this appointment")); |