From 3a3a3f60d33810938ee3cfd66817f2ce3ab6540e Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Sun, 6 Aug 2023 15:54:45 +0200 Subject: [PATCH] Fix --- TEF6686_ESP32.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/TEF6686_ESP32.ino b/TEF6686_ESP32.ino index 9ebdddc..ab01e83 100644 --- a/TEF6686_ESP32.ino +++ b/TEF6686_ESP32.ino @@ -2822,12 +2822,12 @@ void ShowTuneMode() { switch (tunemode) { case TUNE_MAN: if (band == BAND_SW && nowToggleSWMIBand) { - tftPrint(0, "AUTO", 22, 60, BackgroundColor, BackgroundColor, FONT16); + tftPrint(0, "AUTO", 22, 60, BackgroundColor, BackgroundColor, 16); tft.drawRoundRect(1, 57, 42, 20, 5, GreyoutColor); tftPrint(0, "BAND", 22, 60, GreyoutColor, BackgroundColor, 16); } else { - tftPrint(0, "BAND", 22, 60, BackgroundColor, BackgroundColor, FONT16); + tftPrint(0, "BAND", 22, 60, BackgroundColor, BackgroundColor, 16); tft.drawRoundRect(1, 57, 42, 20, 5, GreyoutColor); tftPrint(0, "AUTO", 22, 60, GreyoutColor, BackgroundColor, 16); @@ -2853,12 +2853,12 @@ void ShowTuneMode() { case TUNE_MEM: if (band == BAND_SW && nowToggleSWMIBand) { - tftPrint(0, "AUTO", 22, 60, BackgroundColor, BackgroundColor, FONT16); + tftPrint(0, "AUTO", 22, 60, BackgroundColor, BackgroundColor, 16); tft.drawRoundRect(1, 57, 42, 20, 5, GreyoutColor); tftPrint(0, "BAND", 22, 60, GreyoutColor, BackgroundColor, 16); } else { - tftPrint(0, "BAND", 22, 60, BackgroundColor, BackgroundColor, FONT16); + tftPrint(0, "BAND", 22, 60, BackgroundColor, BackgroundColor, 16); tft.drawRoundRect(1, 57, 42, 20, 5, GreyoutColor); tftPrint(0, "AUTO", 22, 60, GreyoutColor, BackgroundColor, 16);