summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--components/mailviewer/qml/TextContent.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/mailviewer/qml/TextContent.qml b/components/mailviewer/qml/TextContent.qml
index 114aa1fb..e8a7f6d4 100644
--- a/components/mailviewer/qml/TextContent.qml
+++ b/components/mailviewer/qml/TextContent.qml
@@ -50,7 +50,7 @@ Item {
50 readOnly: true 50 readOnly: true
51 selectByMouse: true 51 selectByMouse: true
52 52
53 text: content 53 text: content.substring(0, 100000) //The TextEdit deals poorly with messages that are too large.
54 wrapMode: TextEdit.Wrap 54 wrapMode: TextEdit.Wrap
55 textFormat: Text.RichText 55 textFormat: Text.RichText
56 56