aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-component.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index c93eafd88c..b29cda1f6b 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,10 @@
2004-02-11 Jeffrey Stedfast <fejj@ximian.com>
+ * mail-component.c (mail_control_new): Disable the
+ bonobo-ui-component statusbar when using the EMFolderBrowser
+ outside of the mail component. This prevents the Connector
+ component from having 2 status bars.
+
* em-popup.c: #include <libgnomevfs/gnome-vfs-mime.h>
(em_popup_create_menu): Wrap item->label with _() so
that the strings get translated properly.
diff --git a/mail/mail-component.c b/mail/mail-component.c
index edc0866398..07f522b493 100644
--- a/mail/mail-component.c
+++ b/mail/mail-component.c
@@ -647,8 +647,9 @@ mail_control_new (void)
BonoboPropertyBag *pbag;
view_widget = em_folder_browser_new ();
+ em_folder_view_set_statusbar ((EMFolderView *) view_widget, FALSE);
gtk_widget_show (view_widget);
-
+
view_control = bonobo_control_new (view_widget);
pbag = bonobo_property_bag_new (get_prop, set_prop, view_control);