Skip to content

Commit

Permalink
Infill solid layers even when --fill-density is set to zero. #37
Browse files Browse the repository at this point in the history
  • Loading branch information
alranel committed Nov 9, 2011
1 parent d9ae378 commit 91e250a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Slic3r/Fill.pm
Expand Up @@ -40,12 +40,13 @@ sub make_fill {

my $filler = $Slic3r::fill_type;
my $density = $Slic3r::fill_density;
next SURFACE unless $density > 0;

# force 100% density and rectilinear fill for external surfaces
if ($surface->surface_type ne 'internal') {
$density = 1;
$filler = 'rectilinear';
} else {
next SURFACE unless $density > 0;
}

my @paths = $self->fillers->{$filler}->fill_surface(
Expand Down

0 comments on commit 91e250a

Please sign in to comment.