@@ -76,7 +76,7 @@ bool drawWiFiStatus(const char *statusLine1, const char *statusLine2, int x, int
7676 {
7777 // Draw two lines of network status
7878 spr.setTextDatum (TC_DATUM);
79- spr.setTextColor (TH.rds_text , TH. bg );
79+ spr.setTextColor (TH.rds_text );
8080 if (statusLine1) spr.drawString (statusLine1, x, y, 2 );
8181 if (statusLine2) spr.drawString (statusLine2, x, y+17 , 2 );
8282 return (true );
@@ -94,7 +94,7 @@ void drawZoomedMenu(const char *text, bool force)
9494
9595 spr.fillSmoothRoundRect (RDS_OFFSET_X - 72 + 1 , RDS_OFFSET_Y - 3 + 1 , 152 , 26 , 4 , TH.menu_bg );
9696 spr.setTextDatum (TC_DATUM);
97- spr.setTextColor (TH.menu_item , TH. menu_bg );
97+ spr.setTextColor (TH.menu_item );
9898 spr.drawString (text, RDS_OFFSET_X + 5 , RDS_OFFSET_Y, 4 );
9999 spr.drawSmoothRoundRect (RDS_OFFSET_X - 72 , RDS_OFFSET_Y - 3 , 4 , 4 , 154 , 28 , TH.menu_border , TH.menu_bg );
100100}
@@ -116,11 +116,11 @@ void drawMessage(const char *msg)
116116void drawBandAndMode (const char *band, const char *mode, int x, int y)
117117{
118118 spr.setTextDatum (TC_DATUM);
119- spr.setTextColor (TH.band_text , TH. bg );
119+ spr.setTextColor (TH.band_text );
120120 uint16_t band_width = spr.drawString (band, x, y);
121121
122122 spr.setTextDatum (TL_DATUM);
123- spr.setTextColor (TH.mode_text , TH. bg );
123+ spr.setTextColor (TH.mode_text );
124124 uint16_t mode_width = spr.drawString (mode, x + band_width / 2 + 12 , y + 8 , 2 );
125125
126126 spr.drawSmoothRoundRect (x + band_width / 2 + 7 , y + 7 , 4 , 4 , mode_width + 8 , 17 , TH.mode_border , TH.bg );
@@ -135,7 +135,7 @@ void drawRadioText(int y, int ymax)
135135
136136 // Draw potentially multi-line radio text
137137 spr.setTextDatum (TC_DATUM);
138- spr.setTextColor (TH.rds_text , TH. bg );
138+ spr.setTextColor (TH.rds_text );
139139 for (; *rt && (y<ymax) ; y+=17 , rt+=strlen (rt)+1 )
140140 spr.drawString (rt, 160 , y, 2 );
141141
@@ -191,7 +191,7 @@ void drawFrequency(uint32_t freq, int x, int y, int ux, int uy, uint8_t hl)
191191 hl &= 0x7F ;
192192
193193 spr.setTextDatum (MR_DATUM);
194- spr.setTextColor (TH.freq_text , TH. bg );
194+ spr.setTextColor (TH.freq_text );
195195
196196 if (currentMode==FM)
197197 {
@@ -201,7 +201,7 @@ void drawFrequency(uint32_t freq, int x, int y, int ux, int uy, uint8_t hl)
201201 // FM frequency
202202 spr.drawFloat (freq/100.00 , 2 , x, y, 7 );
203203 spr.setTextDatum (ML_DATUM);
204- spr.setTextColor (TH.funit_text , TH. bg );
204+ spr.setTextColor (TH.funit_text );
205205 spr.drawString (" MHz" , ux, uy);
206206 }
207207 else
@@ -229,7 +229,7 @@ void drawFrequency(uint32_t freq, int x, int y, int ux, int uy, uint8_t hl)
229229 }
230230
231231 // SSB/AM frequencies are measured in kHz
232- spr.setTextColor (TH.funit_text , TH. bg );
232+ spr.setTextColor (TH.funit_text );
233233 spr.drawString (" kHz" , ux, uy);
234234 }
235235
@@ -259,7 +259,7 @@ void drawScale(uint32_t freq)
259259 spr.drawLine (160 , 130 , 160 , 169 , TH.scale_pointer );
260260
261261 spr.setTextDatum (MC_DATUM);
262- spr.setTextColor (TH.scale_text , TH. bg );
262+ spr.setTextColor (TH.scale_text );
263263
264264 // Extra frequencies to draw outside the screen boundaries
265265 // (ensures frequency numbers don't disappear at the edges)
@@ -344,7 +344,7 @@ void drawStereoIndicator(int x, int y, bool stereo)
344344void drawStationName (const char *name, int x, int y)
345345{
346346 spr.setTextDatum (TC_DATUM);
347- spr.setTextColor (TH.rds_text , TH. bg );
347+ spr.setTextColor (TH.rds_text );
348348 spr.drawString (name, x, y, 4 );
349349}
350350
@@ -354,7 +354,7 @@ void drawStationName(const char *name, int x, int y)
354354void drawLongStationName (const char *name, int x, int y)
355355{
356356 int width = spr.textWidth (name, 2 );
357- spr.setTextColor (TH.rds_text , TH. bg );
357+ spr.setTextColor (TH.rds_text );
358358
359359 if ((x + width) >= 320 )
360360 {
0 commit comments