summary refs log tree commit diff
path: root/resources/qml/delegates/TextMessage.qml
blob: 713be86801826cd6e445a290fda383b3d84dc520 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.5

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