diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-02-25 23:43:53 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-02-25 23:50:10 +0800 |
commit | eac634e5149950675951c12d795a638f212914ea (patch) | |
tree | 45d69fccfc95cd1d1de696e7b8ba28c5915a3526 /modules/calendar | |
parent | 3e55a228cc021072c02a3be62bea162dddf2c3bd (diff) | |
download | gsoc2013-evolution-eac634e5149950675951c12d795a638f212914ea.tar.gz gsoc2013-evolution-eac634e5149950675951c12d795a638f212914ea.tar.zst gsoc2013-evolution-eac634e5149950675951c12d795a638f212914ea.zip |
ECalShellSidebar: Remove "loading" status message.
Emitting a "client-added" signal should not trigger any blocking calls,
so the "loading" status message will flash by too quickly to be noticed,
if it gets drawn at all. Just remove it.
Diffstat (limited to 'modules/calendar')
-rw-r--r-- | modules/calendar/e-cal-shell-sidebar.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/calendar/e-cal-shell-sidebar.c b/modules/calendar/e-cal-shell-sidebar.c index 544197e9d9..ad5327f34e 100644 --- a/modules/calendar/e-cal-shell-sidebar.c +++ b/modules/calendar/e-cal-shell-sidebar.c @@ -833,7 +833,6 @@ e_cal_shell_sidebar_add_client (ECalShellSidebar *cal_shell_sidebar, { ESource *source; ESourceSelector *selector; - const gchar *message; g_return_if_fail (E_IS_CAL_SHELL_SIDEBAR (cal_shell_sidebar)); g_return_if_fail (E_IS_CAL_CLIENT (client)); @@ -843,10 +842,7 @@ e_cal_shell_sidebar_add_client (ECalShellSidebar *cal_shell_sidebar, selector = e_cal_shell_sidebar_get_selector (cal_shell_sidebar); e_source_selector_select_source (selector, source); - message = _("Loading calendars"); - cal_shell_sidebar_emit_status_message (cal_shell_sidebar, message); cal_shell_sidebar_emit_client_added (cal_shell_sidebar, client); - cal_shell_sidebar_emit_status_message (cal_shell_sidebar, NULL); } void |