From dc7992d0403d0d4fe29471c48ff35edc5b480dd1 Mon Sep 17 00:00:00 2001 From: Just Call Me Koko Date: Tue, 14 Oct 2025 11:48:29 -0400 Subject: [PATCH] Update MenuFunctions.cpp --- esp32_marauder/MenuFunctions.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/esp32_marauder/MenuFunctions.cpp b/esp32_marauder/MenuFunctions.cpp index 9705bdf..cf91ee7 100644 --- a/esp32_marauder/MenuFunctions.cpp +++ b/esp32_marauder/MenuFunctions.cpp @@ -1519,6 +1519,8 @@ void MenuFunctions::updateStatusBar() wifi_scan_obj.old_channel = current_channel; #if defined(MARAUDER_MINI) || defined(MARAUDER_M5STICKC) || defined(MARAUDER_REV_FEATHER) || defined(MARAUDER_CARDPUTER) display_obj.tft.fillRect(TFT_WIDTH/4, 0, CHAR_WIDTH * 6, STATUS_BAR_WIDTH, STATUSBAR_COLOR); + #elif defined(HAS_DUAL_BAND) + display_obj.tft.fillRect(50, 0, (CHAR_WIDTH / 2) * 8, STATUS_BAR_WIDTH, STATUSBAR_COLOR); #else display_obj.tft.fillRect(50, 0, (CHAR_WIDTH / 2) * 7, STATUS_BAR_WIDTH, STATUSBAR_COLOR); #endif