mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-07 14:04:11 -06:00
Bugfix: wrong handling of large number of raft layers. #2041
This commit is contained in:
parent
a62457d6b5
commit
4e5f7d74ff
2 changed files with 7 additions and 8 deletions
|
@ -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]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue