summary refs log tree commit diff
path: root/resources/qml/delegates/TextMessage.qml
blob: 82d0d0e4c4fe4ff2c5b38569cf71f08112cf85b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import ".."
import im.nheko 1.0

MatrixText {
    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 + "'>")
    width: parent ? parent.width : undefined
    height: isReply ? Math.round(Math.min(timelineRoot.height / 8, implicitHeight)) : undefined
    clip: isReply
    selectByMouse: !Settings.mobileMode && !isReply
    font.pointSize: (Settings.enlargeEmojiOnlyMessages && model.data.isOnlyEmoji > 0 && model.data.isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize
}