mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-12 12:29:00 +08:00
Don't fill gaps if fill density is 0. #915
This commit is contained in:
parent
f3a1221039
commit
ecc7e4560e
@ -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…
x
Reference in New Issue
Block a user