correctly apply msglist_read color

This commit is contained in:
y0ast 2020-09-01 09:31:44 +01:00 committed by Reto Brunner
parent 0acb28645f
commit f09e3966a7
1 changed files with 4 additions and 1 deletions

View File

@ -125,7 +125,10 @@ func (ml *MessageList) Draw(ctx *ui.Context) {
flagged = true
}
}
if !seen {
if seen {
so = config.STYLE_MSGLIST_READ
} else {
so = config.STYLE_MSGLIST_UNREAD
}