nheko/resources/qml/delegates/TextMessage.qml

13 lines
544 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-02-09 01:24:24 +01:00
property string formatted: model.data.formattedBody
2020-02-27 00:34:58 +01:00
text: "<style type=\"text/css\">a { color:"+colors.link+";}</style>" + formatted.replace("<pre>", "<pre style='white-space: pre-wrap'>")
2019-10-27 22:01:40 +01:00
width: parent ? parent.width : undefined
height: isReply ? Math.round(Math.min(timelineRoot.height / 8, implicitHeight)) : undefined
clip: true
2020-06-24 16:24:22 +02:00
font.pointSize: (Settings.enlargeEmojiOnlyMessages && model.data.isOnlyEmoji > 0 && model.data.isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize
}