mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
e959443831
Sadly still required for replies, otherwise this would be perfect.
12 lines
569 B
QML
12 lines
569 B
QML
import ".."
|
|
import im.nheko 1.0
|
|
|
|
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.round(Math.min(timelineRoot.height / 8, implicitHeight)) : undefined
|
|
clip: isReply
|
|
font.pointSize: (Settings.enlargeEmojiOnlyMessages && model.data.isOnlyEmoji > 0 && model.data.isOnlyEmoji < 4) ? Settings.fontSize * 3 : Settings.fontSize
|
|
}
|