1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-25 10:15:50 +00:00

Disable retraction when moving over infill space. #29

This commit is contained in:
Alessandro Ranellucci
2011-11-21 12:37:12 +01:00
parent ed9b4e829c
commit d6ed9c6f34
2 changed files with 8 additions and 3 deletions
+5 -2
View File
@@ -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);
}
}