aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-07-23 02:15:17 +0800
committerMilan Crha <mcrha@redhat.com>2009-07-23 02:15:17 +0800
commit92c3639a0f2f6c58ceec6be7ff7d25f0f20855ea (patch)
tree5c6f66dcb272b27479be97947aa5bd3647f387cf /mail
parent0f0ec12960bab53db7ef6da828c3e7daf494748b (diff)
downloadgsoc2013-evolution-92c3639a0f2f6c58ceec6be7ff7d25f0f20855ea.tar
gsoc2013-evolution-92c3639a0f2f6c58ceec6be7ff7d25f0f20855ea.tar.gz
gsoc2013-evolution-92c3639a0f2f6c58ceec6be7ff7d25f0f20855ea.tar.bz2
gsoc2013-evolution-92c3639a0f2f6c58ceec6be7ff7d25f0f20855ea.tar.lz
gsoc2013-evolution-92c3639a0f2f6c58ceec6be7ff7d25f0f20855ea.tar.xz
gsoc2013-evolution-92c3639a0f2f6c58ceec6be7ff7d25f0f20855ea.tar.zst
gsoc2013-evolution-92c3639a0f2f6c58ceec6be7ff7d25f0f20855ea.zip
Bug #589412 - Wrong notice in message list when messages are hidden
Diffstat (limited to 'mail')
-rw-r--r--mail/message-list.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 6c8d529464..07143ca0e5 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -4291,6 +4291,8 @@ regen_list_done (struct _regen_list_msg *m)
/* space is used to indicate no search too */
if (m->ml->search && strcmp (m->ml->search, " ") != 0)
e_tree_set_info_message (m->ml->tree, _("No message satisfies your search criteria. Either clear search with Search->Clear menu item or change it."));
+ else if (m->ml->hidden)
+ e_tree_set_info_message (m->ml->tree, _("There are only hidden messages in this folder. Use View->Show Hidden Messages to show them."));
else
e_tree_set_info_message (m->ml->tree, _("There are no messages in this folder."));
} else