diff options
Diffstat (limited to 'framework/qml/MailViewer.qml')
-rw-r--r-- | framework/qml/MailViewer.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qml/MailViewer.qml b/framework/qml/MailViewer.qml index e9759d72..ef0cfa78 100644 --- a/framework/qml/MailViewer.qml +++ b/framework/qml/MailViewer.qml | |||
@@ -454,7 +454,7 @@ Rectangle { | |||
454 | textFormat: TextEdit.PlainText | 454 | textFormat: TextEdit.PlainText |
455 | wrapMode: TextEdit.Wrap | 455 | wrapMode: TextEdit.Wrap |
456 | height: implicitHeight | 456 | height: implicitHeight |
457 | text: messageParser.rawContent | 457 | text: messageParser.rawContent.substring(0, 100000) //The TextEdit deals poorly with messages that are too large. |
458 | } | 458 | } |
459 | Rectangle { | 459 | Rectangle { |
460 | color: "black" | 460 | color: "black" |