mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
13 lines
221 B
QML
13 lines
221 B
QML
|
import QtQuick 2.5
|
||
|
|
||
|
TextEdit {
|
||
|
text: eventData.formattedBody
|
||
|
textFormat: TextEdit.RichText
|
||
|
readOnly: true
|
||
|
wrapMode: Text.Wrap
|
||
|
width: parent.width
|
||
|
selectByMouse: true
|
||
|
font.italic: true
|
||
|
color: inactiveColors.text
|
||
|
}
|