Browse Source

Less ambiguous option comment (#17983)

thisiskeithb 4 years ago
parent
commit
5a92462c0f
No account linked to committer's email address
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/Configuration_adv.h
  2. 1
    1
      Marlin/src/gcode/feature/pause/M600.cpp

+ 1
- 1
Marlin/Configuration_adv.h View File

@@ -1978,7 +1978,7 @@
1978 1978
   #define PAUSE_PARK_NO_STEPPER_TIMEOUT           // Enable for XYZ steppers to stay powered on during filament change.
1979 1979
 
1980 1980
   //#define PARK_HEAD_ON_PAUSE                    // Park the nozzle during pause and filament change.
1981
-  //#define HOME_BEFORE_FILAMENT_CHANGE           // Ensure homing has been completed prior to parking for filament change
1981
+  //#define HOME_BEFORE_FILAMENT_CHANGE           // If needed, home before parking for filament change
1982 1982
 
1983 1983
   //#define FILAMENT_LOAD_UNLOAD_GCODES           // Add M701/M702 Load/Unload G-codes, plus Load/Unload in the LCD Prepare menu.
1984 1984
   //#define FILAMENT_UNLOAD_ALL_EXTRUDERS         // Allow M702 to unload all extruders above a minimum target temp (as set by M302)

+ 1
- 1
Marlin/src/gcode/feature/pause/M600.cpp View File

@@ -97,7 +97,7 @@ void GcodeSuite::M600() {
97 97
   #endif
98 98
 
99 99
   #if ENABLED(HOME_BEFORE_FILAMENT_CHANGE)
100
-    // Don't allow filament change without homing first
100
+    // If needed, home before parking for filament change
101 101
     if (!all_axes_known()) home_all_axes();
102 102
   #endif
103 103
 

Loading…
Cancel
Save