From efb3f85cd06d5cc9840bf3cbad8d86751d86e833 Mon Sep 17 00:00:00 2001 From: HarukiToreda <116696711+HarukiToreda@users.noreply.github.com> Date: Tue, 13 May 2025 00:49:59 -0400 Subject: [PATCH] Fix for emote and mute icon --- src/graphics/Screen.cpp | 2 +- src/graphics/SharedUIDisplay.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index ce341a0cb..622191e17 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -1320,7 +1320,7 @@ void drawTextMessageFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16 {"\U0001F496", heart, heart_width, heart_height}, {"\U0001F497", heart, heart_width, heart_height}, {"\U0001F498", heart, heart_width, heart_height}, - {"\U0001F514", bell_alert, bell_alert_width, bell_alert_height}}; + {"\U0001F514", bell_icon, bell_icon_width, bell_icon_height}}; for (const Emote &e : emotes) { if (strcmp(msg, e.code) == 0) { diff --git a/src/graphics/SharedUIDisplay.cpp b/src/graphics/SharedUIDisplay.cpp index 855b7bfbc..bd768f4d8 100644 --- a/src/graphics/SharedUIDisplay.cpp +++ b/src/graphics/SharedUIDisplay.cpp @@ -218,7 +218,7 @@ void drawCommonHeader(OLEDDisplay *display, int16_t x, int16_t y) } else if (isMuted) { int iconX = iconRightEdge - mute_symbol_width; int iconY = textY + (FONT_HEIGHT_SMALL - mail_height) / 2; - display->drawXbm(iconX, iconY, mute_symbol_width, bell_alert_height, bell_alert); + display->drawXbm(iconX, iconY, mute_symbol_width, bell_alert_height, mute_symbol); } }