nheko/resources/qml/delegates/TextMessage.qml

14 lines
726 B
QML
Raw Normal View History

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
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
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
}