Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Marlin/src/lcd/extui/dgus_e3s1pro/DGUSScreenHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ millis_t DGUSScreenHandler::eeprom_save = 0;

void DGUSScreenHandler::init() {
dgus.init();
moveToScreen(DGUS_ScreenID::BOOT, true);
if (booted)
triggerFullUpdate(); // Reinit LCD hardware then refresh current screen
else
moveToScreen(DGUS_ScreenID::BOOT, true);
}

void DGUSScreenHandler::ready() {
Expand Down
5 changes: 4 additions & 1 deletion Marlin/src/lcd/extui/dgus_reloaded/DGUSScreenHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ millis_t DGUSScreenHandler::eeprom_save = 0;
void DGUSScreenHandler::init() {
dgus.init();

moveToScreen(DGUS_ScreenID::BOOT, true);
if (booted)
triggerFullUpdate(); // Reinit LCD hardware then refresh current screen
else
moveToScreen(DGUS_ScreenID::BOOT, true);
}

void DGUSScreenHandler::ready() {
Expand Down
Loading