12 lines
211 B
QML
12 lines
211 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
|
|
color: colors.text
|
|
}
|