Adjust eapol monitor UI

This commit is contained in:
Just Call Me Koko
2025-10-10 10:53:27 -04:00
parent feaae672da
commit 74cd774718
2 changed files with 6 additions and 10 deletions

View File

@@ -210,8 +210,11 @@ void Display::tftDrawEapolColorKey(bool filter)
//Display color key
tft.setTextSize(1); tft.setTextColor(TFT_WHITE);
tft.fillRect(14, 0, 15, 8, TFT_CYAN); tft.setCursor(30, 0); tft.println(" - EAPOL");
if (filter)
if (filter) {
uint16_t y = tft.getCursorY();
tft.setCursor(14, y);
tft.println("Filter Active");
}
}
void Display::tftDrawColorKey()