diff --git a/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatText.qml b/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatText.qml index 850d9d329f..7f6f69d030 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatText.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatText.qml @@ -6,44 +6,44 @@ StyledTextEdit { id: chatText visible: contentType == Constants.messageType || isEmoji textFormat: Text.RichText - text: { - if(contentType === Constants.stickerType) return ""; - let msg = Utils.linkifyAndXSS(message); - if(isEmoji){ - return Emoji.parse(msg, "72x72"); - } else { - return ` - - - - - ${Emoji.parse(msg, "26x26")} - - `; - } - - } horizontalAlignment: Text.AlignLeft wrapMode: Text.Wrap font.pixelSize: 15 readOnly: true selectByMouse: true color: Style.current.textColor + text: { + if(contentType === Constants.stickerType) return ""; + let msg = Utils.linkifyAndXSS(message); + if(isEmoji){ + return Emoji.parse(msg, "72x72"); + } else { + return ``+ + ``+ + ``+ + ``+ + ``+ + `${Emoji.parse(msg, "26x26")}`+ + ``+ + ``; + } + + } }