mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-30 12:11:15 -06:00
Bugfix: fill density = 0 was preventing generation of extra solid layers. #75
This commit is contained in:
parent
248ed8589a
commit
d168ecbb4e
3 changed files with 4 additions and 9 deletions
|
|
@ -349,6 +349,9 @@ sub remove_small_perimeters {
|
|||
sub process_bridges {
|
||||
my $self = shift;
|
||||
|
||||
# no bridges are possible if we have no internal surfaces
|
||||
return if $Slic3r::fill_density == 0;
|
||||
|
||||
my @bridges = ();
|
||||
|
||||
# a bottom surface on a layer > 0 is either a bridge or a overhang
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue