소스 검색

Fix submenu hotend status display

Scott Lahteine 7 년 전
부모
커밋
cea3ea772c
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1
    1
      Marlin/ultralcd_impl_DOGM.h
  2. 1
    1
      Marlin/ultralcd_impl_HD44780.h

+ 1
- 1
Marlin/ultralcd_impl_DOGM.h 파일 보기

@@ -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 파일 보기

@@ -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…
취소
저장