Fixed bug RDS logo stayed on screen when using seek function

This commit is contained in:
Sjef Verhoeven PE5PVB
2023-09-06 16:16:32 +02:00
parent 616a5c0694
commit 7472c96df4
+4 -1
View File
@@ -3027,7 +3027,10 @@ void EdgeBeeper() {
void Seek(bool mode) {
if (band < BAND_GAP) {
radio.setMute();
if (!screenmute) tft.drawBitmap(92, 4, Speaker, 26, 22, PrimaryColor);
if (!screenmute) {
tft.drawBitmap(92, 4, Speaker, 26, 22, PrimaryColor);
ShowRDSLogo(false);
}
if (!mode) TuneDown(); else TuneUp();
delay(50);
ShowFreq(0);