mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
11 lines
194 B
QML
11 lines
194 B
QML
import QtQuick 2.5
|
|
|
|
TextEdit {
|
|
text: eventData.formattedBody
|
|
textFormat: TextEdit.RichText
|
|
readOnly: true
|
|
wrapMode: Text.Wrap
|
|
width: parent.width
|
|
selectByMouse: true
|
|
color: colors.text
|
|
}
|