summaryrefslogtreecommitdiffstats
path: root/framework/qml/MailViewer.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-05-24 14:17:57 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-05-24 14:17:57 +0200
commit681286a47b12a4a192e0d03eb2a2f30551819758 (patch)
treecc91b36b6a10b9ec8a73eeae9e803433ef11383c /framework/qml/MailViewer.qml
parent1e68205f7f40f7ce2c457d0db60cdff4587da244 (diff)
downloadkube-681286a47b12a4a192e0d03eb2a2f30551819758.tar.gz
kube-681286a47b12a4a192e0d03eb2a2f30551819758.zip
Attachment debug view
Diffstat (limited to 'framework/qml/MailViewer.qml')
-rw-r--r--framework/qml/MailViewer.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/framework/qml/MailViewer.qml b/framework/qml/MailViewer.qml
index 275158eb..b475f591 100644
--- a/framework/qml/MailViewer.qml
+++ b/framework/qml/MailViewer.qml
@@ -453,6 +453,24 @@ Rectangle {
453 } 453 }
454 } 454 }
455 } 455 }
456 Controls1.TreeView {
457 id: attachmentsTree
458 width: parent.width
459 height: implicitHeight
460 Controls1.TableViewColumn {
461 role: "type"
462 title: "Type"
463 }
464 Controls1.TableViewColumn {
465 role: "name"
466 title: "Name"
467 }
468 Controls1.TableViewColumn {
469 role: "size"
470 title: "Size"
471 }
472 model: messageParser.attachments
473 }
456 TextEdit { 474 TextEdit {
457 id: textEdit 475 id: textEdit
458 width: parent.width 476 width: parent.width