diff options
Diffstat (limited to 'framework/qml/MailViewer.qml')
-rw-r--r-- | framework/qml/MailViewer.qml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/framework/qml/MailViewer.qml b/framework/qml/MailViewer.qml index b475f591..ad1ad734 100644 --- a/framework/qml/MailViewer.qml +++ b/framework/qml/MailViewer.qml | |||
@@ -317,7 +317,7 @@ Rectangle { | |||
317 | anchors.top: body.top | 317 | anchors.top: body.top |
318 | anchors.left: body.left | 318 | anchors.left: body.left |
319 | anchors.right: body.right | 319 | anchors.right: body.right |
320 | model: messageParser.newTree | 320 | model: messageParser.parts |
321 | debug: false | 321 | debug: false |
322 | } | 322 | } |
323 | 323 | ||
@@ -480,6 +480,16 @@ Rectangle { | |||
480 | wrapMode: TextEdit.Wrap | 480 | wrapMode: TextEdit.Wrap |
481 | height: implicitHeight | 481 | height: implicitHeight |
482 | } | 482 | } |
483 | TextEdit { | ||
484 | id: rawContent | ||
485 | width: parent.width | ||
486 | readOnly: true | ||
487 | selectByMouse: true | ||
488 | textFormat: TextEdit.PlainText | ||
489 | wrapMode: TextEdit.Wrap | ||
490 | height: implicitHeight | ||
491 | text: messageParser.rawContent | ||
492 | } | ||
483 | } | 493 | } |
484 | } | 494 | } |
485 | } | 495 | } |