diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2015-11-21 11:49:26 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2015-11-21 11:49:26 +0100 |
commit | 5069d15dd0d5ba36a98f9ec4d820e73e1e9930e4 (patch) | |
tree | b97e780ae7bfd2c95be359959e813f4de1a4e114 /applications/kmail-quick/package/contents/ui | |
parent | aeee85c42f6f00c9418107ec41bb2eddf1866d17 (diff) | |
download | kube-5069d15dd0d5ba36a98f9ec4d820e73e1e9930e4.tar.gz kube-5069d15dd0d5ba36a98f9ec4d820e73e1e9930e4.zip |
highlight unread mail
Diffstat (limited to 'applications/kmail-quick/package/contents/ui')
-rw-r--r-- | applications/kmail-quick/package/contents/ui/MailListView.qml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/applications/kmail-quick/package/contents/ui/MailListView.qml b/applications/kmail-quick/package/contents/ui/MailListView.qml index 92dddf1d..f804a857 100644 --- a/applications/kmail-quick/package/contents/ui/MailListView.qml +++ b/applications/kmail-quick/package/contents/ui/MailListView.qml | |||
@@ -29,6 +29,17 @@ ListView { | |||
29 | width: root.width | 29 | width: root.width |
30 | height: unit.size * 12 | 30 | height: unit.size * 12 |
31 | 31 | ||
32 | Rectangle { | ||
33 | id: unread | ||
34 | |||
35 | anchors.fill: parent | ||
36 | |||
37 | color: colorPalette.read | ||
38 | opacity: 0.1 | ||
39 | |||
40 | visible: model.unread == false | ||
41 | } | ||
42 | |||
32 | Avatar { | 43 | Avatar { |
33 | id: avatar | 44 | id: avatar |
34 | 45 | ||