diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-09-18 04:13:37 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-09-18 04:13:37 +0800 |
commit | bc459f40b721348162c1f19bd4ec9c491189cdc5 (patch) | |
tree | 5acea72b3303f2ed468cff3576468c138424e218 /mail | |
parent | 3e824826986b05b47ca76454e8ae270d1ad90348 (diff) | |
download | gsoc2013-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')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/em-message-browser.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 7df4b67ba6..2954cbdaaf 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,11 @@ 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. + +2004-09-09 Jeffrey Stedfast <fejj@novell.com> + * mail-account-gui.c (mail_account_gui_new): If built with gtkfilechooser support, we need to add a checkbox in the chooser so that the user can select files or folders (allowing him to 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); } |