matrixion/resources/qml/delegates/NoticeMessage.qml
2019-11-23 20:06:15 +01:00

12 lines
238 B
QML

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