summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-01-17 14:52:52 +0100
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-01-17 14:52:52 +0100
commitd60df73099541c6f18653f2102e143d3bf5c1f5e (patch)
tree699783d47984b7afc3917dff3f6e77088f7fe5bd /components
parent3654b0e48562a37ed79755a6841d0eaf2c288218 (diff)
downloadkube-d60df73099541c6f18653f2102e143d3bf5c1f5e.tar.gz
kube-d60df73099541c6f18653f2102e143d3bf5c1f5e.zip
don't show thread indicator when it is only a single mail
Diffstat (limited to 'components')
-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 }