diff options
Diffstat (limited to 'components/mailviewer/qml/TextContent.qml')
-rw-r--r-- | components/mailviewer/qml/TextContent.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/components/mailviewer/qml/TextContent.qml b/components/mailviewer/qml/TextContent.qml index 2e0167d4..4f3b12bd 100644 --- a/components/mailviewer/qml/TextContent.qml +++ b/components/mailviewer/qml/TextContent.qml | |||
@@ -35,9 +35,12 @@ Item { | |||
35 | visible: textItem.debug | 35 | visible: textItem.debug |
36 | text: model.type | 36 | text: model.type |
37 | } | 37 | } |
38 | Text { | 38 | TextEdit { |
39 | width: parent.width | 39 | width: parent.width |
40 | 40 | ||
41 | readOnly: true | ||
42 | selectByMouse: true | ||
43 | |||
41 | text: model.content | 44 | text: model.content |
42 | wrapMode: Text.WordWrap | 45 | wrapMode: Text.WordWrap |
43 | 46 | ||