Fix error in t/support.t
This commit is contained in:
parent
fcaa3a03c2
commit
66045faf81
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ use Slic3r::Test;
|
|||
if ($layer_id <= $config->raft_layers) {
|
||||
# this is a raft layer or the first object layer
|
||||
my $line = Slic3r::Line->new_scale([ $self->X, $self->Y ], [ $info->{new_X}, $info->{new_Y} ]);
|
||||
my @path = $line->grow(scale($config->support_material_extrusion_width/2));
|
||||
my @path = @{$line->grow(scale($config->support_material_extrusion_width/2))};
|
||||
if ($layer_id < $config->raft_layers) {
|
||||
# this is a raft layer
|
||||
push @raft, @path;
|
||||
|
|
Loading…
Reference in a new issue