diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-02-25 23:45:57 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-02-25 23:50:10 +0800 |
commit | 6b6bf65e961dd423e221e6f1a8063ef78e3a0c2d (patch) | |
tree | e1866e9a604dfbd04560e47858715834b4413e75 /modules/calendar/e-memo-shell-sidebar.c | |
parent | eac634e5149950675951c12d795a638f212914ea (diff) | |
download | gsoc2013-evolution-6b6bf65e961dd423e221e6f1a8063ef78e3a0c2d.tar gsoc2013-evolution-6b6bf65e961dd423e221e6f1a8063ef78e3a0c2d.tar.gz gsoc2013-evolution-6b6bf65e961dd423e221e6f1a8063ef78e3a0c2d.tar.bz2 gsoc2013-evolution-6b6bf65e961dd423e221e6f1a8063ef78e3a0c2d.tar.lz gsoc2013-evolution-6b6bf65e961dd423e221e6f1a8063ef78e3a0c2d.tar.xz gsoc2013-evolution-6b6bf65e961dd423e221e6f1a8063ef78e3a0c2d.tar.zst gsoc2013-evolution-6b6bf65e961dd423e221e6f1a8063ef78e3a0c2d.zip |
EMemoShellSidebar: 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/e-memo-shell-sidebar.c')
-rw-r--r-- | modules/calendar/e-memo-shell-sidebar.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/calendar/e-memo-shell-sidebar.c b/modules/calendar/e-memo-shell-sidebar.c index 48b962ab47..2998c94c32 100644 --- a/modules/calendar/e-memo-shell-sidebar.c +++ b/modules/calendar/e-memo-shell-sidebar.c @@ -720,7 +720,6 @@ e_memo_shell_sidebar_add_client (EMemoShellSidebar *memo_shell_sidebar, { ESource *source; ESourceSelector *selector; - const gchar *message; g_return_if_fail (E_IS_MEMO_SHELL_SIDEBAR (memo_shell_sidebar)); g_return_if_fail (E_IS_CAL_CLIENT (client)); @@ -730,10 +729,7 @@ e_memo_shell_sidebar_add_client (EMemoShellSidebar *memo_shell_sidebar, selector = e_memo_shell_sidebar_get_selector (memo_shell_sidebar); e_source_selector_select_source (selector, source); - message = _("Loading memo list"); - memo_shell_sidebar_emit_status_message (memo_shell_sidebar, message); memo_shell_sidebar_emit_client_added (memo_shell_sidebar, client); - memo_shell_sidebar_emit_status_message (memo_shell_sidebar, NULL); } void |