Browse Source

Fix submenu hotend status display

Scott Lahteine 7 years ago
parent
commit
cea3ea772c
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/ultralcd_impl_DOGM.h
  2. 1
    1
      Marlin/ultralcd_impl_HD44780.h

+ 1
- 1
Marlin/ultralcd_impl_DOGM.h View File

@@ -634,7 +634,7 @@ static void lcd_implementation_status_screen() {
634 634
 
635 635
       u8g.setPrintPos(LCD_PIXEL_WIDTH - 11 * (DOG_CHAR_WIDTH), row_y2);
636 636
       lcd_print('E');
637
-      lcd_print((char)('0' + active_extruder));
637
+      lcd_print((char)('1' + active_extruder));
638 638
       lcd_print(' ');
639 639
       lcd_print(itostr3(thermalManager.degHotend(active_extruder)));
640 640
       lcd_print('/');

+ 1
- 1
Marlin/ultralcd_impl_HD44780.h View File

@@ -807,7 +807,7 @@ static void lcd_implementation_status_screen() {
807 807
     static void lcd_implementation_hotend_status(const uint8_t row) {
808 808
       if (row < LCD_HEIGHT) {
809 809
         lcd.setCursor(LCD_WIDTH - 9, row);
810
-        lcd.print(LCD_STR_THERMOMETER[active_extruder]);
810
+        lcd.print(LCD_STR_THERMOMETER[0]);
811 811
         lcd.print(itostr3(thermalManager.degHotend(active_extruder)));
812 812
         lcd.print('/');
813 813
         lcd.print(itostr3(thermalManager.degTargetHotend(active_extruder)));

Loading…
Cancel
Save