0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-02-02 07:00:42 +00:00

🩹 Set color 1 on DOGM clear

Followup to `clear_for_drawing`
This commit is contained in:
Scott Lahteine 2024-06-27 18:35:00 -05:00
parent 9240ec89d0
commit 11f90de873

View file

@ -381,6 +381,7 @@ void MarlinUI::clear_lcd() {
do {
u8g.drawBox(0, 0, u8g.getWidth(), u8g.getHeight());
} while (u8g.nextPage());
u8g.setColorIndex(1);
}
// U8G displays are drawn over multiple loops so must do their own clearing.