Skip to content

Commit

Permalink
🐛 Fix E3S1PRO DGUS builds (#27211)
Browse files Browse the repository at this point in the history
Partially reverts #26261
  • Loading branch information
thisiskeithb authored Jul 5, 2024
1 parent 785b1da commit e6a61b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/lcd/extui/dgus_e3s1pro/DGUSRxHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void DGUSRxHandler::retractLength(DGUS_VP &vp, void *data) {

void DGUSRxHandler::setLanguage(DGUS_VP &vp, void *data) {
DGUS_Data::Language language = (DGUS_Data::Language)Endianness::fromBE_P<uint16_t>(data);
ui_language = screen.config.language = language;
screen.config.language = language;
screen.triggerEEPROMSave();
screen.triggerFullUpdate();
}
Expand Down

0 comments on commit e6a61b1

Please sign in to comment.