diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 3 | ||||
-rw-r--r-- | mail/component-factory.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index e43a1c25f2..c336296d2e 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -2,6 +2,9 @@ * component-factory.c (owner_unset_cb): Disable interaction once the shell has quit. + (create_view): Instead of + folder_browser_factory_new_control ("", corba_shell) when looking + at a mailstorage folder, use create_noselect_control(). 2001-08-27 Ettore Perazzoli <ettore@ximian.com> diff --git a/mail/component-factory.c b/mail/component-factory.c index 877e0757fd..f0ede8f01c 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -160,7 +160,7 @@ create_view (EvolutionShellComponent *shell_component, mail_scan_subfolders (CAMEL_STORE (store), storage); camel_object_unref (CAMEL_OBJECT (store)); - control = folder_browser_factory_new_control ("", corba_shell); + control = create_noselect_control (); } else if (!g_strcasecmp (folder_type, "vtrash")) { if (!g_strncasecmp (physical_uri, "file:", 5)) control = folder_browser_factory_new_control ("vtrash:file:/", corba_shell); |