nheko/resources/qml/delegates/NoticeMessage.qml

13 lines
217 B
QML
Raw Normal View History

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