From e9b9c48caebcd3f3a93554cf5eeb25a600cf1b06 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Wed, 8 Dec 2021 16:13:38 +0100 Subject: [PATCH] Fixed rear seam option, which was not always respected, the problem was originally introduced in b8c898b, recent seam changes probably made it more visible --- src/libslic3r/GCode/SeamPlacer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/GCode/SeamPlacer.cpp b/src/libslic3r/GCode/SeamPlacer.cpp index 6d082a431a..f74775a9a9 100644 --- a/src/libslic3r/GCode/SeamPlacer.cpp +++ b/src/libslic3r/GCode/SeamPlacer.cpp @@ -498,7 +498,7 @@ Point SeamPlacer::calculate_seam(const Layer& layer, const SeamPosition seam_pos else if (seam_position == spRear) { // Object is centered around (0,0) in its current coordinate system. last_pos.x() = 0; - last_pos.y() += coord_t(3. * po->bounding_box().radius()); + last_pos.y() = coord_t(3. * po->bounding_box().radius()); last_pos_weight = 5.f; } if (seam_position == spNearest) { // last_pos already contains current nozzle position