From aeb5b31583d14d6814fe7f6cb8ad75dee0181448 Mon Sep 17 00:00:00 2001 From: Just Call Me Koko Date: Tue, 30 Jun 2026 01:15:03 -0400 Subject: [PATCH] Fix wifi fox hunt touch exit --- esp32_marauder/MenuFunctions.cpp | 1 + esp32_marauder/WiFiScan.cpp | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/esp32_marauder/MenuFunctions.cpp b/esp32_marauder/MenuFunctions.cpp index 1f86d5f..b1c1a3a 100644 --- a/esp32_marauder/MenuFunctions.cpp +++ b/esp32_marauder/MenuFunctions.cpp @@ -338,6 +338,7 @@ void MenuFunctions::main(uint32_t currentTime) (wifi_scan_obj.currentScanMode == WIFI_ATTACK_BEACON_LIST) || (wifi_scan_obj.currentScanMode == BT_SCAN_ALL) || (wifi_scan_obj.currentScanMode == BT_SCAN_FOX_HUNT) || + (wifi_scan_obj.currentScanMode == WIFI_SCAN_SIG_STREN) || (wifi_scan_obj.currentScanMode == BT_SCAN_RAYBAN) || (wifi_scan_obj.currentScanMode == BT_SCAN_AIRTAG) || (wifi_scan_obj.currentScanMode == BT_SCAN_AIRTAG_MON) || diff --git a/esp32_marauder/WiFiScan.cpp b/esp32_marauder/WiFiScan.cpp index 27c6c55..8b1d045 100644 --- a/esp32_marauder/WiFiScan.cpp +++ b/esp32_marauder/WiFiScan.cpp @@ -5240,10 +5240,10 @@ void WiFiScan::RunRawScan(uint8_t scan_mode, uint16_t color) { display_obj.tft.setFreeFont(NULL); display_obj.tft.setTextSize(1); display_obj.tft.setTextColor(TFT_GREEN, TFT_BLACK); - display_obj.tftDrawChannelScaleButtons(set_channel, false); - display_obj.tftDrawExitScaleButtons(false); + //display_obj.tftDrawChannelScaleButtons(set_channel, false); + //display_obj.tftDrawExitScaleButtons(false); //if (scan_mode == WIFI_SCAN_RAW_CAPTURE) - display_obj.tftDrawChanHopButton(false, settings_obj.loadSetting("ChanHop")); + //display_obj.tftDrawChanHopButton(false, settings_obj.loadSetting("ChanHop")); } #endif #endif