summaryrefslogtreecommitdiffstats
path: root/framework/qml/MailViewer.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-05-07 11:05:47 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-05-07 11:05:47 +0200
commit2989ba081341d01231bbf2efebd45b0d03958dd7 (patch)
tree832ff22cd097f23861ef1387e7d38a7df0eae705 /framework/qml/MailViewer.qml
parent21da50cd64337990186fa3aca7630c523714e90f (diff)
downloadkube-2989ba081341d01231bbf2efebd45b0d03958dd7.tar.gz
kube-2989ba081341d01231bbf2efebd45b0d03958dd7.zip
Made structure available in debug view
Diffstat (limited to 'framework/qml/MailViewer.qml')
-rw-r--r--framework/qml/MailViewer.qml11
1 files changed, 11 insertions, 0 deletions
diff --git a/framework/qml/MailViewer.qml b/framework/qml/MailViewer.qml
index ef0cfa78..d18ed8e6 100644
--- a/framework/qml/MailViewer.qml
+++ b/framework/qml/MailViewer.qml
@@ -447,6 +447,17 @@ Rectangle {
447 height: childrenRect.height 447 height: childrenRect.height
448 448
449 TextEdit { 449 TextEdit {
450 id: structure
451 width: parent.width
452 readOnly: true
453 selectByMouse: true
454 textFormat: TextEdit.PlainText
455 wrapMode: TextEdit.Wrap
456 height: implicitHeight
457 text: messageParser.structureAsString
458 }
459
460 TextEdit {
450 id: rawContent 461 id: rawContent
451 width: parent.width 462 width: parent.width
452 readOnly: true 463 readOnly: true