mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 11:23:42 +00:00
Disable retraction when moving over infill space. #29
This commit is contained in:
@@ -423,8 +423,11 @@ sub export_gcode {
|
||||
|
||||
# extrude fills
|
||||
for my $fill (@{ $layer->fills }) {
|
||||
printf $fh $extruder->extrude($_, 'fill')
|
||||
for $fill->shortest_path($extruder->last_pos);
|
||||
for ($fill->shortest_path($extruder->last_pos)) {
|
||||
printf $fh $extruder->extrude($_, 'fill');
|
||||
$extruder->enable_retraction(0);
|
||||
}
|
||||
$extruder->enable_retraction(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user