diff options
Diffstat (limited to 'framework/qml')
-rw-r--r-- | framework/qml/MailViewer.qml | 11 |
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 |