ソースを参照

Reimplement #2892

Include #2892 to fix the isHeating symbol in the extruder graphics
AnHardt 8年前
コミット
f27c2b6b4b
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      Marlin/dogm_lcd_implementation.h

+ 1
- 1
Marlin/dogm_lcd_implementation.h ファイルの表示

@@ -270,7 +270,7 @@ static void _draw_heater_status(int x, int heater) {
270 270
   lcd_print(itostr3(int(heater >= 0 ? degHotend(heater) : degBed()) + 0.5));
271 271
 
272 272
   lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
273
-  if (!isHeatingHotend(0)) {
273
+  if (heater >= 0 ? !isHeatingHotend(heater) : !isHeatingBed()) {
274 274
     u8g.drawBox(x+7,y,2,2);
275 275
   }
276 276
   else {

読み込み中…
キャンセル
保存