fix(chat): Emoji is html-encoded in message reply

revert to previous behavior, we want RichText even though we really
don't :)

Fixes #12786
This commit is contained in:
Lukáš Tinkl 2023-11-24 11:51:01 +01:00 committed by Lukáš Tinkl
parent 26d867a63a
commit 0dbbea383d
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ Item {
color: d.isQuote ? Theme.palette.baseColor1 : Theme.palette.directColor1
font.family: Theme.palette.baseFont.name
font.pixelSize: Theme.primaryTextFontSize
textFormat: root.stripHtmlTags ? Text.PlainText : Text.RichText
textFormat: Text.RichText
wrapMode: root.convertToSingleLine ? Text.NoWrap : Text.Wrap
readOnly: true
selectByMouse: true