mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-14 19:12:38 -07:00
Bugfix: small perimeter speed was applied to all holes too, regardless of their size. #175
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user