summaryrefslogtreecommitdiffstats
path: root/resources/qml/delegates/TextMessage.qml
blob: f7dba618bc09b2ad63fe8eff77f15bafeb779553 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.5

TextEdit {
	text: eventData.formattedBody
	textFormat: TextEdit.RichText
	readOnly: true
	wrapMode: Text.Wrap
	width: parent.width
	selectByMouse: true
	color: colors.text
}