summary refs log tree commit diff
path: root/resources/qml/delegates/TextMessage.qml
blob: d17723f38b662a811230f4c577b330e728f042d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import ".."

MatrixText {
	property string formatted: model.data.formattedBody
	text: "<style type=\"text/css\">a { color:"+colors.link+";}</style>" + formatted.replace("<pre>", "<pre style='white-space: pre-wrap'>")
	width: parent ? parent.width : undefined
	height: isReply ? Math.min(chat.height / 8, implicitHeight) : undefined
	clip: true
	font.pointSize: (timelineSettings.enlarge_emoji_only_msg && model.data.isOnlyEmoji > 0 && model.data.isOnlyEmoji < 4) ? settings.font_size * 3 : settings.font_size
}