diff options
author | Milan Crha <mcrha@redhat.com> | 2009-12-16 01:36:37 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-12-16 01:36:37 +0800 |
commit | b8efcdb8d6fc81c4b942bde4acd83f83b15791de (patch) | |
tree | 570a010d97bbf9e95d4d742a338fcc3b771d5301 /mail/message-list.c | |
parent | 2aea353ce79d16f2ee637f413e49e312d5873f33 (diff) | |
download | gsoc2013-evolution-b8efcdb8d6fc81c4b942bde4acd83f83b15791de.tar.gz gsoc2013-evolution-b8efcdb8d6fc81c4b942bde4acd83f83b15791de.tar.zst gsoc2013-evolution-b8efcdb8d6fc81c4b942bde4acd83f83b15791de.zip |
Bug #602505 - Incorrect information in message window
Diffstat (limited to 'mail/message-list.c')
-rw-r--r-- | mail/message-list.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index f7ba4ff542..bbffb44bde 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -3468,6 +3468,11 @@ message_list_set_folder (MessageList *message_list, CamelFolder *folder, const g message_list->idle_id = 0; } + if (message_list->seen_id) { + g_source_remove (message_list->seen_id); + message_list->seen_id = 0; + } + /* reset the normalised sort performance hack */ g_hash_table_remove_all (message_list->normalised_hash); |