Merge pull request #1341 from justcallmekoko/develop

Fix wifi fox hunt touch exit
This commit is contained in:
Just Call Me Koko
2026-06-30 01:25:09 -04:00
committed by GitHub
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -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) ||
+3 -3
View File
@@ -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<bool>("ChanHop"));
//display_obj.tftDrawChanHopButton(false, settings_obj.loadSetting<bool>("ChanHop"));
}
#endif
#endif