소스 검색

Merge pull request #5647 from manianac/RCBugFix-PrepareMenuFix

Fix empty Prepare menu
Scott Lahteine 8 년 전
부모
커밋
f8ae0fd29f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      Marlin/ultralcd.cpp

+ 1
- 1
Marlin/ultralcd.cpp 파일 보기

@@ -1403,7 +1403,7 @@ KeepDrawing:
1403 1403
     // Cooldown
1404 1404
     //
1405 1405
     bool has_heat = false;
1406
-    HOTEND_LOOP() if (thermalManager.target_temperature[e]) { has_heat = true; break; }
1406
+    HOTEND_LOOP() if (thermalManager.target_temperature[HOTEND_INDEX]) { has_heat = true; }
1407 1407
     #if HAS_TEMP_BED
1408 1408
       if (thermalManager.target_temperature_bed) has_heat = true;
1409 1409
     #endif

Loading…
취소
저장