aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser.c
diff options
context:
space:
mode:
author0 <NotZed@Ximian.com>2001-09-21 08:56:49 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-09-21 08:56:49 +0800
commita68b5681353d9999b208cdbada9b40586eb09c18 (patch)
tree71cc4eae2909937c92ce902c2c1571e95eb58565 /mail/folder-browser.c
parent5de6e2a14b9d3e4fc3260cfa195921d020249a22 (diff)
downloadgsoc2013-evolution-a68b5681353d9999b208cdbada9b40586eb09c18.tar
gsoc2013-evolution-a68b5681353d9999b208cdbada9b40586eb09c18.tar.gz
gsoc2013-evolution-a68b5681353d9999b208cdbada9b40586eb09c18.tar.bz2
gsoc2013-evolution-a68b5681353d9999b208cdbada9b40586eb09c18.tar.lz
gsoc2013-evolution-a68b5681353d9999b208cdbada9b40586eb09c18.tar.xz
gsoc2013-evolution-a68b5681353d9999b208cdbada9b40586eb09c18.tar.zst
gsoc2013-evolution-a68b5681353d9999b208cdbada9b40586eb09c18.zip
Update the status bar here, assuming we've just been activated.
2001-09-20 <NotZed@Ximian.com> * folder-browser.c (folder_browser_set_shell_view): Update the status bar here, assuming we've just been activated. * mail-ops.c (add_vtrash_info): Scan whole list, rather than missing the last one. Also dont assume its always the last, otherwise we could lose following folders. * mail-vfolder.c (all): d(x) out debug printfs * mail-folder-cache.c (update_1folder): If its a vtrash folder, or the outbox_folder, and we have a folder, then make the 'count' the total message count, not unread messages count. svn path=/trunk/; revision=13036
Diffstat (limited to 'mail/folder-browser.c')
-rw-r--r--mail/folder-browser.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/mail/folder-browser.c b/mail/folder-browser.c
index 672c8d8724..f577d46e88 100644
--- a/mail/folder-browser.c
+++ b/mail/folder-browser.c
@@ -803,6 +803,10 @@ folder_browser_set_shell_view(FolderBrowser *fb, GNOME_Evolution_ShellView shell
fb->shell_view = CORBA_Object_duplicate(shell_view, &ev);
CORBA_exception_free(&ev);
+
+ /* small hack, at this point we've just been activated */
+ if (fb->shell_view != CORBA_OBJECT_NIL)
+ update_status_bar(fb);
}
extern CamelFolder *drafts_folder, *sent_folder, *outbox_folder;