Continuously update LCD when hotend status is displayed in Filament Change screens
This commit is contained in:
parent
76eca9732d
commit
b39f634252
@ -2880,14 +2880,14 @@ void kill_screen(const char* lcd_msg) {
|
|||||||
// Portions from STATIC_ITEM...
|
// Portions from STATIC_ITEM...
|
||||||
#define HOTEND_STATUS_ITEM() do { \
|
#define HOTEND_STATUS_ITEM() do { \
|
||||||
if (_menuLineNr == _thisItemNr) { \
|
if (_menuLineNr == _thisItemNr) { \
|
||||||
if (lcdDrawUpdate) \
|
if (lcdDrawUpdate) { \
|
||||||
lcd_implementation_drawmenu_static(_lcdLineNr, PSTR(MSG_FILAMENT_CHANGE_NOZZLE), false, true); \
|
lcd_implementation_drawmenu_static(_lcdLineNr, PSTR(MSG_FILAMENT_CHANGE_NOZZLE), false, true); \
|
||||||
lcd_implementation_hotend_status(_lcdLineNr); \
|
lcd_implementation_hotend_status(_lcdLineNr); \
|
||||||
|
} \
|
||||||
if (_skipStatic && encoderLine <= _thisItemNr) { \
|
if (_skipStatic && encoderLine <= _thisItemNr) { \
|
||||||
encoderPosition += ENCODER_STEPS_PER_MENU_ITEM; \
|
encoderPosition += ENCODER_STEPS_PER_MENU_ITEM; \
|
||||||
++encoderLine; \
|
++encoderLine; \
|
||||||
} \
|
} \
|
||||||
else \
|
|
||||||
lcdDrawUpdate = LCDVIEW_KEEP_REDRAWING; \
|
lcdDrawUpdate = LCDVIEW_KEEP_REDRAWING; \
|
||||||
} \
|
} \
|
||||||
++_thisItemNr; \
|
++_thisItemNr; \
|
||||||
|
Loading…
Reference in New Issue
Block a user