2019-09-02 23:28:05 +02:00
|
|
|
import QtQuick 2.5
|
|
|
|
|
|
|
|
TextEdit {
|
|
|
|
text: eventData.formattedBody
|
|
|
|
textFormat: TextEdit.RichText
|
|
|
|
readOnly: true
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
width: parent.width
|
|
|
|
selectByMouse: true
|
2019-09-07 01:33:46 +02:00
|
|
|
color: colors.text
|
2019-09-02 23:28:05 +02:00
|
|
|
}
|