This commit is contained in:
staked-smart-ace 2021-01-14 12:46:05 +04:00 committed by Iuri Matias
parent 1d2ad3092f
commit f2eda36569
2 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,7 @@ Item {
if(contentType === Constants.stickerType) return "";
let msg = Utils.linkifyAndXSS(message);
if(isEmoji) {
return Emoji.parse(msg, Emoji.size.small);
return Emoji.parse(msg, Emoji.size.middle);
} else {
return `<style type="text/css">` +
`p, img, a, del, code, blockquote { margin: 0; padding: 0; }` +

View File

@ -7,6 +7,7 @@ import "../shared/status/emojiList.js" as EmojiJSON
QtObject {
readonly property var size: {
"big": "72x72",
"middle": "32x32",
"small": "20x20"
}
property string base: Qt.resolvedUrl("twemoji/")