diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/message-list.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 08d698cc35..b793fe2152 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2006-08-24 Srinivasa Ragavan <sragavan@novell.com> + + ** Fix for bug #352695 + + * message-list.c: (regen_list_regened): Dont store the save state, if + the search is in place. + 2006-08-23 Srinivasa Ragavan <sragavan@novell.com> * em-utils.c: Update the doc for em_utils_temp_save_part. diff --git a/mail/message-list.c b/mail/message-list.c index 436dddf508..8ea25661f6 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -3831,7 +3831,7 @@ regen_list_regened (struct _mail_msg *mm) if (m->dotree) { if (m->ml->just_set_folder) m->ml->just_set_folder = FALSE; - else + else if (!m->search) /* Let us not store the tree state of search, since it will overwrite the test. */ save_tree_state (m->ml); build_tree (m->ml, m->tree, m->changes); |