|
@@ -2256,12 +2256,13 @@ void lcd_update() {
|
2256
|
2256
|
}
|
2257
|
2257
|
|
2258
|
2258
|
#if ENABLED(DOGLCD) // Changes due to different driver architecture of the DOGM display
|
2259
|
|
- bool blink = lcd_blink();
|
|
2259
|
+ static int8_t dot_color = 0;
|
|
2260
|
+ dot_color = 1 - dot_color;
|
2260
|
2261
|
u8g.firstPage();
|
2261
|
2262
|
do {
|
2262
|
2263
|
lcd_setFont(FONT_MENU);
|
2263
|
2264
|
u8g.setPrintPos(125, 0);
|
2264
|
|
- u8g.setColorIndex(blink ? 1 : 0); // Set color for the alive dot
|
|
2265
|
+ u8g.setColorIndex(dot_color); // Set color for the alive dot
|
2265
|
2266
|
u8g.drawPixel(127, 63); // draw alive dot
|
2266
|
2267
|
u8g.setColorIndex(1); // black on white
|
2267
|
2268
|
(*currentMenu)();
|