From ba4325411b2e824fc23161463c596e98cfcd1fee Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sun, 18 Jan 2015 22:08:43 +0100 Subject: [PATCH] Bugfix: the downwards move in sequential printing was performed in the wrong spot. #2524 --- lib/Slic3r/Print/GCode.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Print/GCode.pm b/lib/Slic3r/Print/GCode.pm index d3bff0f5d..0dee4f858 100644 --- a/lib/Slic3r/Print/GCode.pm +++ b/lib/Slic3r/Print/GCode.pm @@ -197,7 +197,7 @@ sub export { $gcodegen->set_origin(Slic3r::Pointf->new(map unscale $copy->[$_], X,Y)); print $fh $gcodegen->retract; print $fh $gcodegen->travel_to( - $object->_copies_shift->negative, + Slic3r::Point->new(0,0), undef, 'move to origin position for next object', );