1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-08-01 11:25:50 +00:00

Bugfix: not all the calls to travel_to() were updated

This commit is contained in:
Alessandro Ranellucci
2013-03-08 13:50:50 +01:00
parent 2f192bddca
commit f494335f77
+1 -1
View File
@@ -164,7 +164,7 @@ sub extrude_loop {
$point->rotate($angle, $extrusion_path->polyline->[0]); $point->rotate($angle, $extrusion_path->polyline->[0]);
# generate the travel move # 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; return $gcode;