Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
TextMessage.qml 211 B
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
}