Browse Source

Fix G1 behaviour after tool unpark

Fix #10777 for 2.0.x

Co-Authored-By: Ante Vukorepa <o.orcinus@gmail.com>
Scott Lahteine 6 years ago
parent
commit
d2647c1f19
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      Marlin/src/module/tool_change.cpp

+ 3
- 0
Marlin/src/module/tool_change.cpp View File

454
           #endif
454
           #endif
455
           // Move back to the original (or tweaked) position
455
           // Move back to the original (or tweaked) position
456
           do_blocking_move_to(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS]);
456
           do_blocking_move_to(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS]);
457
+          #if ENABLED(DUAL_X_CARRIAGE)
458
+            active_extruder_parked = false;
459
+          #endif
457
         }
460
         }
458
         #if ENABLED(SWITCHING_NOZZLE)
461
         #if ENABLED(SWITCHING_NOZZLE)
459
           else {
462
           else {

Loading…
Cancel
Save