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;