matrixion/resources/qml/delegates/NoticeMessage.qml

13 lines
238 B
QML
Raw Normal View History

2019-09-07 02:33:46 +03:00
import QtQuick 2.5
TextEdit {
text: model.formattedBody
2019-09-07 02:33:46 +03:00
textFormat: TextEdit.RichText
readOnly: true
wrapMode: Text.Wrap
2019-10-28 00:01:40 +03:00
width: parent ? parent.width : undefined
2019-09-07 02:33:46 +03:00
selectByMouse: true
font.italic: true
color: inactiveColors.text
}