mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-29 14:18:49 +03:00
Fix wrong font used in emoji escape
This commit is contained in:
parent
6aabe9d5f7
commit
463cee7146
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ utils::replaceEmoji(const QString &body)
|
||||||
if (utils::codepointIsEmoji(code)) {
|
if (utils::codepointIsEmoji(code)) {
|
||||||
if (!insideFontBlock) {
|
if (!insideFontBlock) {
|
||||||
fmtBody += QString("<font face=\"" +
|
fmtBody += QString("<font face=\"" +
|
||||||
UserSettings::instance()->font() + "\">");
|
UserSettings::instance()->emojiFont() + "\">");
|
||||||
insideFontBlock = true;
|
insideFontBlock = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue