From 71ba6fa9ce5fc96d9c6c061f290fb4a02688e693 Mon Sep 17 00:00:00 2001 From: HarukiToreda <116696711+HarukiToreda@users.noreply.github.com> Date: Fri, 9 May 2025 14:49:19 -0400 Subject: [PATCH] Update Screen.cpp --- src/graphics/Screen.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index 50cfe9d26..b215f85f7 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -169,6 +169,7 @@ static void drawIconScreen(const char *upperMsg, OLEDDisplay *display, OLEDDispl // draw centered icon int iconX = x + (SCREEN_WIDTH - icon_width) / 2; int iconY = y + (SCREEN_HEIGHT - FONT_HEIGHT_MEDIUM - icon_height) / 2 + 2; + iconY -= (SCREEN_WIDTH > 128) ? 0 : 4; display->drawXbm(iconX, iconY, icon_width, icon_height, icon_bits);