diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-02-25 23:46:44 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-02-25 23:50:10 +0800 |
commit | bface58459243c763742dbc1cdb1d761d8ae388c (patch) | |
tree | 624155f8bfc25b420ab7910217aa483e76723bfb | |
parent | 6b6bf65e961dd423e221e6f1a8063ef78e3a0c2d (diff) | |
download | gsoc2013-evolution-bface58459243c763742dbc1cdb1d761d8ae388c.tar gsoc2013-evolution-bface58459243c763742dbc1cdb1d761d8ae388c.tar.gz gsoc2013-evolution-bface58459243c763742dbc1cdb1d761d8ae388c.tar.bz2 gsoc2013-evolution-bface58459243c763742dbc1cdb1d761d8ae388c.tar.lz gsoc2013-evolution-bface58459243c763742dbc1cdb1d761d8ae388c.tar.xz gsoc2013-evolution-bface58459243c763742dbc1cdb1d761d8ae388c.tar.zst gsoc2013-evolution-bface58459243c763742dbc1cdb1d761d8ae388c.zip |
ETaskShellSidebar: 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.
-rw-r--r-- | modules/calendar/e-task-shell-sidebar.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/calendar/e-task-shell-sidebar.c b/modules/calendar/e-task-shell-sidebar.c index 9555860077..ef767cf31c 100644 --- a/modules/calendar/e-task-shell-sidebar.c +++ b/modules/calendar/e-task-shell-sidebar.c @@ -720,7 +720,6 @@ e_task_shell_sidebar_add_client (ETaskShellSidebar *task_shell_sidebar, { ESource *source; ESourceSelector *selector; - const gchar *message; g_return_if_fail (E_IS_TASK_SHELL_SIDEBAR (task_shell_sidebar)); g_return_if_fail (E_IS_CAL_CLIENT (client)); @@ -730,10 +729,7 @@ e_task_shell_sidebar_add_client (ETaskShellSidebar *task_shell_sidebar, selector = e_task_shell_sidebar_get_selector (task_shell_sidebar); e_source_selector_select_source (selector, source); - message = _("Loading task list"); - task_shell_sidebar_emit_status_message (task_shell_sidebar, message); task_shell_sidebar_emit_client_added (task_shell_sidebar, client); - task_shell_sidebar_emit_status_message (task_shell_sidebar, NULL); } void |