diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-01-17 14:52:52 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-01-17 14:52:52 +0100 |
commit | d60df73099541c6f18653f2102e143d3bf5c1f5e (patch) | |
tree | 699783d47984b7afc3917dff3f6e77088f7fe5bd /components/package/contents | |
parent | 3654b0e48562a37ed79755a6841d0eaf2c288218 (diff) | |
download | kube-d60df73099541c6f18653f2102e143d3bf5c1f5e.tar.gz kube-d60df73099541c6f18653f2102e143d3bf5c1f5e.zip |
don't show thread indicator when it is only a single mail
Diffstat (limited to 'components/package/contents')
-rw-r--r-- | components/package/contents/ui/MailListView.qml | 4 |
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 | } |