Merge pull request #8072 from thinkyhead/bf2_fix_M600

[2.0.x] Fix position sync in M600 pause/resume
This commit is contained in:
Scott Lahteine
2017-10-24 14:55:46 -05:00
committed by GitHub
2 changed files with 21 additions and 32 deletions

View File

@ -713,10 +713,10 @@ static void lcd_implementation_status_screen() {
lcd.setCursor(8, 0);
#if HOTENDS > 1
lcd.print((CHAR)LCD_STR_THERMOMETER[0]);
lcd.print((char)LCD_STR_THERMOMETER[0]);
_draw_heater_status(1, -1, blink);
#else
lcd.print((CHAR)LCD_BEDTEMP_CHAR);
lcd.print((char)LCD_BEDTEMP_CHAR);
_draw_heater_status(-1, -1, blink);
#endif