From f494335f77a091a0ab5dad6c103860670d02edf2 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Fri, 8 Mar 2013 13:50:50 +0100 Subject: [PATCH] Bugfix: not all the calls to travel_to() were updated --- lib/Slic3r/GCode.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/GCode.pm b/lib/Slic3r/GCode.pm index 670685478..cb1613d3b 100644 --- a/lib/Slic3r/GCode.pm +++ b/lib/Slic3r/GCode.pm @@ -164,7 +164,7 @@ sub extrude_loop { $point->rotate($angle, $extrusion_path->polyline->[0]); # generate the travel move - $gcode .= $self->travel_to($point, "move inwards before travel"); + $gcode .= $self->travel_to($point, $loop->role, "move inwards before travel"); } return $gcode;