summary refs log tree commit diff
path: root/resources/qml/delegates/NoticeMessage.qml
blob: 34132bcf44eef97300c8977c89c11be1ff551684 (plain) (blame)
1
2
3
4
5
6
7
8
9
import ".."

MatrixText {
	property string notice: model.data.formattedBody.replace("<pre>", "<pre style='white-space: pre-wrap'>")
	text: notice
	width: parent ? parent.width : undefined
	font.italic: true
	color: inactiveColors.text
}