diff options
Diffstat (limited to 'framework/qml/MailViewer.qml')
-rw-r--r-- | framework/qml/MailViewer.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/framework/qml/MailViewer.qml b/framework/qml/MailViewer.qml index 5e1ef845..3bf75eb9 100644 --- a/framework/qml/MailViewer.qml +++ b/framework/qml/MailViewer.qml | |||
@@ -41,6 +41,7 @@ Rectangle { | |||
41 | property variant sent; | 41 | property variant sent; |
42 | property bool incomplete: false; | 42 | property bool incomplete: false; |
43 | property bool current: false; | 43 | property bool current: false; |
44 | property bool unread; | ||
44 | 45 | ||
45 | implicitHeight: header.height + attachments.height + body.height + incompleteBody.height + footer.height + Kube.Units.largeSpacing | 46 | implicitHeight: header.height + attachments.height + body.height + incompleteBody.height + footer.height + Kube.Units.largeSpacing |
46 | 47 | ||
@@ -389,6 +390,12 @@ Rectangle { | |||
389 | } | 390 | } |
390 | } | 391 | } |
391 | } | 392 | } |
393 | Rectangle { | ||
394 | anchors.fill: parent | ||
395 | color: Kube.Colors.buttonColor | ||
396 | opacity: 0.4 | ||
397 | visible: root.unread | ||
398 | } | ||
392 | 399 | ||
393 | Component { | 400 | Component { |
394 | id: debugPopupComponent | 401 | id: debugPopupComponent |