Don't fill gaps if fill density is 0. #915
This commit is contained in:
parent
f3a1221039
commit
ecc7e4560e
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue