Browse Source

Un-pause fans on STOP

Scott Lahteine 3 years ago
parent
commit
15bda88d04
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/MarlinCore.cpp

+ 2
- 2
Marlin/src/MarlinCore.cpp View File

889
 
889
 
890
   print_job_timer.stop();
890
   print_job_timer.stop();
891
 
891
 
892
-  #if ENABLED(PROBING_FANS_OFF)
893
-    if (thermalManager.fans_paused) thermalManager.set_fans_paused(false); // put things back the way they were
892
+  #if EITHER(PROBING_FANS_OFF, ADVANCED_PAUSE_FANS_PAUSE)
893
+    thermalManager.set_fans_paused(false); // Un-pause fans for safety
894
   #endif
894
   #endif
895
 
895
 
896
   if (IsRunning()) {
896
   if (IsRunning()) {

Loading…
Cancel
Save