From 0df306e68bf254722e33a29550ec12b9bb0e7a29 Mon Sep 17 00:00:00 2001
From: Loren Burkholder <computersemiexpert@outlook.com>
Date: Tue, 28 Feb 2023 20:47:03 -0500
Subject: [PATCH] Make emoji larger in the timeline by default

---
 src/Utils.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Utils.cpp b/src/Utils.cpp
index b753cfdbe..0ea5565b7 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):
-- 
GitLab