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

TextEdit {
	text: model.formattedBody
	textFormat: TextEdit.RichText
	readOnly: true
	wrapMode: Text.Wrap
	width: parent.width
	selectByMouse: true
	font.italic: true
	color: inactiveColors.text
}