Fix heater status display for advanced pause

This commit is contained in:
Thomas Moore
2017-05-31 21:26:05 +00:00
committed by Scott Lahteine
parent ac33a378c0
commit a32f7b329c
3 changed files with 6 additions and 6 deletions

View File

@ -704,7 +704,9 @@ static void lcd_implementation_status_screen() {
lcd_print(' ');
lcd_print(itostr3(thermalManager.degHotend(active_extruder)));
lcd_print('/');
lcd_print(itostr3(thermalManager.degTargetHotend(active_extruder)));
if (lcd_blink() || !thermalManager.is_heater_idle(active_extruder))
lcd_print(itostr3(thermalManager.degTargetHotend(active_extruder)));
}
#endif // ADVANCED_PAUSE_FEATURE