Bugfix: wrong handling of large number of raft layers. #2041

This commit is contained in:
Alessandro Ranellucci 2014-05-25 23:17:00 +02:00
parent a62457d6b5
commit 4e5f7d74ff
2 changed files with 7 additions and 8 deletions

View file

@ -1,4 +1,4 @@
use Test::More tests => 15;
use Test::More tests => 16;
use strict;
use warnings;
@ -130,10 +130,10 @@ use Slic3r::Test;
'first object layer is completely supported by raft';
}
{
foreach my $raft_layers (2, 70) {
my $config = Slic3r::Config->new_from_defaults;
$config->set('skirts', 0);
$config->set('raft_layers', 2);
$config->set('raft_layers', $raft_layers);
$config->set('layer_height', 0.35);
$config->set('first_layer_height', 0.3);
$config->set('nozzle_diameter', [0.5]);