From 594be61606a511780a7a183cedbe29a653368050 Mon Sep 17 00:00:00 2001 From: MCelliotG Date: Wed, 29 May 2024 02:05:22 +0300 Subject: [PATCH] Fixed missing EQ string position --- src/gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui.cpp b/src/gui.cpp index 1523260..a1dc962 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -1646,7 +1646,7 @@ void BuildDisplay() { tft.drawRoundRect(248, 56, 32, 20, 5, GreyoutColor); if (band > BAND_GAP) tftPrint(0, "iMS", 265, 59, GreyoutColor, BackgroundColor, 16); tft.drawRoundRect(286, 56, 32, 20, 5, GreyoutColor); - if (band > BAND_GAP) tftPrint(0, "EQ", 303, 59, GreyoutColor, BackgroundColor, 16); + if (band > BAND_GAP) tftPrint(0, "EQ", 301, 59, GreyoutColor, BackgroundColor, 16); tft.drawBitmap(122, 5, RDSLogo, 35, 22, GreyoutColor); tft.drawBitmap(92, 4, Speaker, 26, 22, GreyoutColor); @@ -4349,4 +4349,4 @@ String removeNewline(String inputString) { } } return outputString; -} \ No newline at end of file +}