2019-11-03 05:28:16 +03:00
|
|
|
import ".."
|
2019-09-03 00:28:05 +03:00
|
|
|
|
2019-11-03 05:28:16 +03:00
|
|
|
MatrixText {
|
2020-02-09 03:24:24 +03:00
|
|
|
property string formatted: model.data.formattedBody
|
2020-02-27 02:34:58 +03:00
|
|
|
text: "<style type=\"text/css\">a { color:"+colors.link+";}</style>" + formatted.replace("<pre>", "<pre style='white-space: pre-wrap'>")
|
2019-10-28 00:01:40 +03:00
|
|
|
width: parent ? parent.width : undefined
|
2020-07-25 23:08:02 +03:00
|
|
|
height: isReply ? Math.round(Math.min(timelineRoot.height / 8, implicitHeight)) : undefined
|
2020-05-13 02:09:40 +03:00
|
|
|
clip: true
|
2020-05-26 23:27:05 +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
|
|
|
}
|