diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-05-03 00:07:18 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-05-03 00:07:18 +0800 |
commit | 8a9ec3432ed901063bfe665221cced3be6353015 (patch) | |
tree | 285dc7bb77c753a410872a3f859422c5d5fc4394 /mail/mail-callbacks.c | |
parent | 271ebab0a7a4777bc3750154630278e4aa2614bc (diff) | |
download | gsoc2013-evolution-8a9ec3432ed901063bfe665221cced3be6353015.tar.gz gsoc2013-evolution-8a9ec3432ed901063bfe665221cced3be6353015.tar.zst gsoc2013-evolution-8a9ec3432ed901063bfe665221cced3be6353015.zip |
To be consistant with the message-list envelope toggle, undelete the
2003-04-30 Jeffrey Stedfast <fejj@ximian.com>
* mail-callbacks.c (mark_as_unseen): To be consistant with the
message-list envelope toggle, undelete the message when we unmark
the Seen flag here as well. Fixes bug #42118.
2003-04-30 Jeffrey Stedfast <fejj@ximian.com>
* message-list.c (ml_tree_value_at): Fixed to return the correct
values (swapped) in order to fix bug #42120.
2003-04-30 Jeffrey Stedfast <fejj@ximian.com>
* message-list.c (regen_list_regened): Save the tree state before
we tear down the tree and then load it back again. yay. Fixes bug
#42170 and #40074.
svn path=/trunk/; revision=21047
Diffstat (limited to 'mail/mail-callbacks.c')
-rw-r--r-- | mail/mail-callbacks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index d304f95511..ff77fcd453 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -2055,7 +2055,7 @@ mark_as_unseen (BonoboUIComponent *uih, void *user_data, const char *path) fb->seen_id = 0; } - flag_messages (fb, CAMEL_MESSAGE_SEEN, 0); + flag_messages (fb, CAMEL_MESSAGE_SEEN | CAMEL_MESSAGE_DELETED, 0); } void |