diff options
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/mail-ops.c | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 243b6d9d3a..43400bdc09 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,9 @@ 2000-07-02 Dan Winship <danw@helixcode.com> + * mail-ops.c (real_fetch_mail): Remove hack to redisplay the + inbox, since folder_changed signals will now be emitted + appropriately. + * component-factory.c (create_vfolder_storage): Fix filter_driver_new invocation. diff --git a/mail/mail-ops.c b/mail/mail-ops.c index be6fcbd364..069d74c2d7 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -281,11 +281,6 @@ real_fetch_mail (gpointer user_data ) goto cleanup; } - /* Redisplay. Ick. FIXME */ - path = g_strdup_printf ("file://%s", path); - folder_browser_set_uri (fb, path); - g_free (path); - cleanup: g_free(tmp_mbox); |