Browse Source

renaming the disable inactive extruder feature

Dim3nsioneer 10 years ago
parent
commit
8a32c5395b
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/Configuration.h
  2. 1
    1
      Marlin/planner.cpp

+ 1
- 1
Marlin/Configuration.h View File

@@ -305,7 +305,7 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
305 305
 #define DISABLE_Y false
306 306
 #define DISABLE_Z false
307 307
 #define DISABLE_E false // For all extruders
308
-#define DISABLE_UNSELECTED_E true //disable only not selected extruders and keep selected extruder active
308
+#define DISABLE_INACTIVE_EXTRUDER true //disable only inactive extruders and keep active extruder enabled
309 309
 
310 310
 #define INVERT_X_DIR true    // for Mendel set to false, for Orca set to true
311 311
 #define INVERT_Y_DIR false    // for Mendel set to true, for Orca set to false

+ 1
- 1
Marlin/planner.cpp View File

@@ -660,7 +660,7 @@ block->steps_y = labs((target[X_AXIS]-position[X_AXIS]) - (target[Y_AXIS]-positi
660 660
   // Enable extruder(s)
661 661
   if(block->steps_e != 0)
662 662
   {
663
-    if (DISABLE_UNSELECTED_E) //enable only selected extruder
663
+    if (DISABLE_INACTIVE_EXTRUDER) //enable only selected extruder
664 664
     {
665 665
       switch(extruder)
666 666
       {

Loading…
Cancel
Save