Preserve brightness in EEPROM validate (#19485)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
parent
93421f3a00
commit
e3d4e328f9
@ -1804,10 +1804,11 @@ void MarlinSettings::postprocess() {
|
|||||||
//
|
//
|
||||||
{
|
{
|
||||||
_FIELD_TEST(lcd_contrast);
|
_FIELD_TEST(lcd_contrast);
|
||||||
|
|
||||||
int16_t lcd_contrast;
|
int16_t lcd_contrast;
|
||||||
EEPROM_READ(lcd_contrast);
|
EEPROM_READ(lcd_contrast);
|
||||||
TERN_(HAS_LCD_CONTRAST, ui.set_contrast(lcd_contrast));
|
if (!validating) {
|
||||||
|
TERN_(HAS_LCD_CONTRAST, ui.set_contrast(lcd_contrast));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
Loading…
Reference in New Issue
Block a user