mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-15 01:22:37 -07:00
Don't fill gaps if fill density is 0. #915
This commit is contained in:
@@ -252,7 +252,7 @@ sub make_perimeters {
|
||||
}
|
||||
|
||||
# fill gaps
|
||||
if ($Slic3r::Config->gap_fill_speed > 0) {
|
||||
if ($Slic3r::Config->gap_fill_speed > 0 && $Slic3r::Config->fill_density > 0) {
|
||||
my $filler = Slic3r::Fill::Rectilinear->new(layer_id => $self->layer->id);
|
||||
|
||||
my $w = $self->perimeter_flow->width;
|
||||
|
||||
Reference in New Issue
Block a user