Skip to content

Commit

Permalink
Fix error in t/support.t
Browse files Browse the repository at this point in the history
  • Loading branch information
alranel committed Jan 14, 2014
1 parent fcaa3a0 commit 66045fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/support.t
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 66045fa

Please sign in to comment.