nheko/resources/qml/delegates/TextMessage.qml

12 lines
211 B
QML
Raw Normal View History

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