2019-11-03 05:28:16 +03:00
|
|
|
import ".."
|
2020-06-24 17:24:22 +03:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
2019-11-03 05:28:16 +03:00
|
|
|
MatrixText {
|
2020-10-08 22:11:21 +03:00
|
|
|
property string formatted: model.data.formattedBody
|
|
|
|
|
2021-02-12 20:22:41 +03: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 22:11:21 +03:00
|
|
|
width: parent ? parent.width : undefined
|
|
|
|
height: isReply ? Math.round(Math.min(timelineRoot.height / 8, implicitHeight)) : undefined
|
2020-10-22 22:02:39 +03:00
|
|
|
clip: isReply
|
2021-02-14 03:28:28 +03:00
|
|
|
selectByMouse: !Settings.mobileMode && !isReply
|
2020-10-08 22:11:21 +03:00
|
|
|
font.pointSize: (Settings.enlargeEmojiOnlyMessages && model.data.isOnlyEmoji > 0 && model.data.isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize
|
2019-09-03 00:28:05 +03:00
|
|
|
}
|