diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-08-12 21:29:03 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-08-12 21:29:03 +0800 |
commit | 9cc5ad91181c3637542f2fb12f331b60c44d7d8b (patch) | |
tree | f2f83108c6d73591637ddef33186797ac7e8586a /mail | |
parent | dbb4c2472f54845f131f4df91aa11ec1d852b80a (diff) | |
download | gsoc2013-evolution-9cc5ad91181c3637542f2fb12f331b60c44d7d8b.tar.gz gsoc2013-evolution-9cc5ad91181c3637542f2fb12f331b60c44d7d8b.tar.zst gsoc2013-evolution-9cc5ad91181c3637542f2fb12f331b60c44d7d8b.zip |
Minor correction to previous commit.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/message-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index 848bef204d..6295766f5d 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -3953,7 +3953,7 @@ on_click (ETree *tree, gint row, ETreePath path, gint col, GdkEvent *event, Mess /* Notify the folder tree model that the user has marked a message * as unread so it doesn't mistake the event as new mail arriving. */ - if (flag == CAMEL_MESSAGE_SEEN) { + if (col == COL_MESSAGE_STATUS && (flags & CAMEL_MESSAGE_SEEN)) { EMFolderTreeModel *model; model = em_folder_tree_model_get_default (); |