summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2023-02-28 20:47:03 -0500
committerLoren Burkholder <computersemiexpert@outlook.com>2023-02-28 20:47:03 -0500
commit0df306e68bf254722e33a29550ec12b9bb0e7a29 (patch)
treef70c69b8b0e62c9596f8d83dc4cb80424c7e7af0 /src
parentmake lint (diff)
downloadnheko-0df306e68bf254722e33a29550ec12b9bb0e7a29.tar.xz
Make emoji larger in the timeline by default
Diffstat (limited to 'src')
-rw-r--r--src/Utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.cpp b/src/Utils.cpp
index b753cfdb..0ea5565b 100644
--- a/src/Utils.cpp
+++ b/src/Utils.cpp
@@ -141,7 +141,7 @@ utils::replaceEmoji(const QString &body)
         if (!insideTag && utils::codepointIsEmoji(code)) {
             if (!insideFontBlock) {
                 fmtBody += QStringLiteral("<font face=\"") % UserSettings::instance()->emojiFont() %
-                           QStringLiteral("\">");
+                           QStringLiteral("\" size=\"4\">");
                 insideFontBlock = true;
             } else if (code == 0xfe0f) {
                 // BUG(Nico):