summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/package/contents/ui/MailListView.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/components/package/contents/ui/MailListView.qml b/components/package/contents/ui/MailListView.qml
index 398de649..6de0e683 100644
--- a/components/package/contents/ui/MailListView.qml
+++ b/components/package/contents/ui/MailListView.qml
@@ -208,8 +208,10 @@ Item {
208 anchors { 208 anchors {
209 right: parent.right 209 right: parent.right
210 } 210 }
211 font.italic: true
212 211
212 visible: model.threadSize > 1
213
214 font.italic: true
213 text: model.threadSize 215 text: model.threadSize
214 color: mailListDelegate.checked ? Kirigami.Theme.highlightedTextColor : model.unread ? "#1d99f3" : Kirigami.Theme.disabledTextColor 216 color: mailListDelegate.checked ? Kirigami.Theme.highlightedTextColor : model.unread ? "#1d99f3" : Kirigami.Theme.disabledTextColor
215 } 217 }