2019-09-07 01:33:46 +02:00
|
|
|
import QtQuick 2.5
|
|
|
|
|
|
|
|
TextEdit {
|
2019-10-08 20:55:09 +02:00
|
|
|
text: model.formattedBody
|
2019-09-07 01:33:46 +02:00
|
|
|
textFormat: TextEdit.RichText
|
|
|
|
readOnly: true
|
|
|
|
wrapMode: Text.Wrap
|
2019-10-27 22:01:40 +01:00
|
|
|
width: parent ? parent.width : undefined
|
2019-09-07 01:33:46 +02:00
|
|
|
selectByMouse: true
|
|
|
|
font.italic: true
|
|
|
|
color: inactiveColors.text
|
|
|
|
}
|