From 90a3ac593855eee84954d19182f796486523b90e Mon Sep 17 00:00:00 2001 From: Jason P Date: Tue, 9 Jun 2026 09:17:43 -0500 Subject: [PATCH] Update SharedUIDisplay.cpp (#10659) --- src/graphics/SharedUIDisplay.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/graphics/SharedUIDisplay.cpp b/src/graphics/SharedUIDisplay.cpp index 691a6fc58..f74fbb3fb 100644 --- a/src/graphics/SharedUIDisplay.cpp +++ b/src/graphics/SharedUIDisplay.cpp @@ -578,7 +578,11 @@ void drawCommonFooter(OLEDDisplay *display, int16_t x, int16_t y) #endif display->setColor(BLACK); +#if GRAPHICS_TFT_COLORING_ENABLED display->fillRect(0, footerY, SCREEN_WIDTH, footerH); +#else + display->fillRect(0, footerY, connection_icon_width + 1, footerH); +#endif display->setColor(WHITE); if (currentResolution == ScreenResolution::High) { const int bytesPerRow = (connection_icon_width + 7) / 8;