diff options
author | Tobias Mueller <muelli@auftrags-killer.org> | 2007-08-03 04:32:21 +0800 |
---|---|---|
committer | Tobias Mueller <tobiasmue@src.gnome.org> | 2007-08-03 04:32:21 +0800 |
commit | 8181f2e746903a4b21d0c7a58b3087d5d21dd06f (patch) | |
tree | 9d4c63583b8d5f37ad262bae7f6e7701748da250 /mail | |
parent | 6700c0d3355f5e70bf68e22c30526ef37d22fccd (diff) | |
download | gsoc2013-evolution-8181f2e746903a4b21d0c7a58b3087d5d21dd06f.tar.gz gsoc2013-evolution-8181f2e746903a4b21d0c7a58b3087d5d21dd06f.tar.zst gsoc2013-evolution-8181f2e746903a4b21d0c7a58b3087d5d21dd06f.zip |
Removed dead if statement, fixes bug #387312
2007-08-02 Tobias Mueller <muelli@auftrags-killer.org>
* message-list.c: (regen_list_regened) Removed dead if
statement, fixes bug #387312
svn path=/trunk/; revision=33930
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/message-list.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index a878ab648e..c17147e95a 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2007-08-02 Tobias Mueller <muelli@auftrags-killer.org> + * message-list.c: (regen_list_regened) Removed dead if + statement, fixes bug #387312 + 2007-08-02 Srinivasa Ragavan <sragavan@novell.com> ** Fix for expanding newly created folders from Lucky diff --git a/mail/message-list.c b/mail/message-list.c index 07d1f5b3cc..9f3c1f343d 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -3936,7 +3936,7 @@ regen_list_regened (struct _mail_msg *mm) if (m->dotree) { if (m->ml->just_set_folder) m->ml->just_set_folder = FALSE; - else if (!m->search) /* Let us not store the tree state of search, since it will overwrite the test. */ + else /* Saving the tree state causes bug 352695 but fixes bug 387312 */ save_tree_state (m->ml); build_tree (m->ml, m->tree, m->changes); |