aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-message-browser.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@novell.com>2004-09-18 04:13:37 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-09-18 04:13:37 +0800
commitbc459f40b721348162c1f19bd4ec9c491189cdc5 (patch)
tree5acea72b3303f2ed468cff3576468c138424e218 /mail/em-message-browser.c
parent3e824826986b05b47ca76454e8ae270d1ad90348 (diff)
downloadgsoc2013-evolution-bc459f40b721348162c1f19bd4ec9c491189cdc5.tar
gsoc2013-evolution-bc459f40b721348162c1f19bd4ec9c491189cdc5.tar.gz
gsoc2013-evolution-bc459f40b721348162c1f19bd4ec9c491189cdc5.tar.bz2
gsoc2013-evolution-bc459f40b721348162c1f19bd4ec9c491189cdc5.tar.lz
gsoc2013-evolution-bc459f40b721348162c1f19bd4ec9c491189cdc5.tar.xz
gsoc2013-evolution-bc459f40b721348162c1f19bd4ec9c491189cdc5.tar.zst
gsoc2013-evolution-bc459f40b721348162c1f19bd4ec9c491189cdc5.zip
Ignore the emfv->mark_seen for deciding whether or not to mark the message
2004-09-09 Jeffrey Stedfast <fejj@novell.com> * em-message-browser.c (emmb_set_message): Ignore the emfv->mark_seen for deciding whether or not to mark the message as seen. Fixes bug #65448. svn path=/trunk/; revision=27290
Diffstat (limited to 'mail/em-message-browser.c')
-rw-r--r--mail/em-message-browser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-message-browser.c b/mail/em-message-browser.c
index d347567acb..4f3a2aaa2c 100644
--- a/mail/em-message-browser.c
+++ b/mail/em-message-browser.c
@@ -248,7 +248,7 @@ emmb_set_message(EMFolderView *emfv, const char *uid, int nomarkseen)
}
/* Well we don't know if it got displayed (yet) ... but whatever ... */
- if (!nomarkseen && emfv->mark_seen)
+ if (!nomarkseen)
camel_folder_set_message_flags(emfv->folder, uid, CAMEL_MESSAGE_SEEN, CAMEL_MESSAGE_SEEN);
}