2019-11-03 03:28:16 +01:00
|
|
|
import ".."
|
2020-06-24 16:24:22 +02:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
2019-11-03 03:28:16 +01:00
|
|
|
MatrixText {
|
2020-10-08 21:11:21 +02:00
|
|
|
property string formatted: model.data.formattedBody
|
|
|
|
|
2021-02-12 18:22:41 +01:00
|
|
|
text: "<style type=\"text/css\">a { color:" + colors.link + ";}\ncode { background-color: " + colors.alternateBase + ";}</style>" + formatted.replace("<pre>", "<pre style='white-space: pre-wrap; background-color: " + colors.alternateBase + "'>")
|
2020-10-08 21:11:21 +02:00
|
|
|
width: parent ? parent.width : undefined
|
|
|
|
height: isReply ? Math.round(Math.min(timelineRoot.height / 8, implicitHeight)) : undefined
|
2020-10-22 21:02:39 +02:00
|
|
|
clip: isReply
|
2021-02-14 01:28:28 +01:00
|
|
|
selectByMouse: !Settings.mobileMode && !isReply
|
2020-10-08 21:11:21 +02:00
|
|
|
font.pointSize: (Settings.enlargeEmojiOnlyMessages && model.data.isOnlyEmoji > 0 && model.data.isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize
|
2019-09-02 23:28:05 +02:00
|
|
|
}
|