Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Matena <lukasmatena@seznam.cz>2021-05-31 22:23:03 +0300
committerLukas Matena <lukasmatena@seznam.cz>2021-05-31 22:23:03 +0300
commit580dc890b8c75c9dc28a3bbfbb5ebccd3ede76c2 (patch)
tree20db8b212f585cf1f53e5150b1f9d465758d901c /src/libslic3r
parent413bce49fc9b07adc5ee5869c8acf6713c30ba33 (diff)
Wipe tower: use normal retraction when moving to the tower, not toolchange retraction
This does not make sense, there is always an unretraction when the head arrives at the tower.
Diffstat (limited to 'src/libslic3r')
-rw-r--r--src/libslic3r/GCode.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp
index efcd5e210..ad39eb41e 100644
--- a/src/libslic3r/GCode.cpp
+++ b/src/libslic3r/GCode.cpp
@@ -243,8 +243,7 @@ namespace Slic3r {
if (! tcr.priming) {
// Move over the wipe tower.
- // Retract for a tool change, using the toolchange retract value and setting the priming extra length.
- gcode += gcodegen.retract(true);
+ gcode += gcodegen.retract();
gcodegen.m_avoid_crossing_perimeters.use_external_mp_once();
gcode += gcodegen.travel_to(
wipe_tower_point_to_object_point(gcodegen, start_pos),