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

Bugfix: small perimeter speed was applied to all holes too, regardless of their size. #175

This commit is contained in:
Alessandro Ranellucci
2012-01-27 14:43:12 +01:00
parent 4ade11b26e
commit 2151457d9e
+1 -1
View File
@@ -126,7 +126,7 @@ sub make_perimeter {
# detect small perimeters by checking their area
for (@{ $layer->perimeters }) {
$_->role('small-perimeter') if $_->polygon->area < $Slic3r::small_perimeter_area;
$_->role('small-perimeter') if abs($_->polygon->area) < $Slic3r::small_perimeter_area;
}
# add thin walls as perimeters