From 71efa32432df95dc98c945a6cc8ebdca0e12ec7b Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Wed, 19 Jul 2023 23:45:36 +0200 Subject: [PATCH] FREQ in AFEON view not at right place --- TEF6686_ESP32.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TEF6686_ESP32.ino b/TEF6686_ESP32.ino index 1434361..6190e8d 100644 --- a/TEF6686_ESP32.ino +++ b/TEF6686_ESP32.ino @@ -3508,7 +3508,7 @@ void ShowAFEON() { } if (radio.eon[i].mappedfreq > 0) { - tftPrint(-1, "FREQ:", 316, 32, ActiveColor, ActiveColorSmooth, FONT16); + tftPrint(1, "FREQ:", 316, 32, ActiveColor, ActiveColorSmooth, FONT16); if (radio.eon[i].mappedfreq != mappedfreqold[i]) { tftPrint(1, String(mappedfreqold[i] / 100) + "." + String((mappedfreqold[i] % 100) / 10), 316, 54 + (15 * i), BackgroundColor, BackgroundColor, FONT16); }