mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-11-02 20:51:23 -07:00
Bugfix: infill direction wasn't correctly alternated when infilling every 2 layers. #1068
This commit is contained in:
parent
1b79b1cb20
commit
5beb2187d3
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ sub new {
|
||||||
my $self = [
|
my $self = [
|
||||||
map delete $args{$_}, qw(expolygon surface_type thickness thickness_layers bridge_angle extra_perimeters),
|
map delete $args{$_}, qw(expolygon surface_type thickness thickness_layers bridge_angle extra_perimeters),
|
||||||
];
|
];
|
||||||
$self->[S_THICKNESS_LAYERS] = 1;
|
$self->[S_THICKNESS_LAYERS] //= 1;
|
||||||
|
|
||||||
bless $self, $class;
|
bless $self, $class;
|
||||||
$self;
|
$self;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue