From 8a35c9a1a0c8b61e1e1c81188a3980d784d92e5c Mon Sep 17 00:00:00 2001 From: Steven Haigh Date: Mon, 15 Feb 2021 11:21:47 +1100 Subject: [PATCH] E3V2 Status Area followup (#21072) --- Marlin/src/lcd/dwin/e3v2/dwin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/lcd/dwin/e3v2/dwin.cpp b/Marlin/src/lcd/dwin/e3v2/dwin.cpp index 5e7c1ef4c7..e046bb90f5 100644 --- a/Marlin/src/lcd/dwin/e3v2/dwin.cpp +++ b/Marlin/src/lcd/dwin/e3v2/dwin.cpp @@ -1675,7 +1675,7 @@ void update_variable() { } #if HAS_FAN - if (_fanspeed != thermalManager.fan_speed[0]) { + if (_new_fanspeed) { _fanspeed = thermalManager.fan_speed[0]; DWIN_Draw_IntValue(true, true, 0, DWIN_FONT_STAT, Color_White, Color_Bg_Black, 3, 195 + 2 * STAT_CHR_W, 384, _fanspeed); }