Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2015-03-06 23:35:00 +0300
committerAlessandro Ranellucci <aar@cpan.org>2015-03-06 23:35:00 +0300
commit095391d702975dae1126229e7f0c1c1968fe2514 (patch)
tree0e83ccbb042aec93c02564770cfe0522e234835b /t/shells.t
parent9332c2179166e93ab2f2fca0a1fa9099f845699c (diff)
When using raft, validate first layer height against support material extruder only instead of taking other extruders into account, thus potentially allowing larger nozzles to be used for it. #2701
Diffstat (limited to 't/shells.t')
-rw-r--r--t/shells.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/shells.t b/t/shells.t
index a12858ae0..f3fd62d14 100644
--- a/t/shells.t
+++ b/t/shells.t
@@ -72,6 +72,9 @@ use Slic3r::Test;
$config->set('bottom_solid_layers', 0);
ok $test->(), "no shells are applied when both top and bottom are set to zero";
+ $config->set('perimeters', 1);
+ $config->set('top_solid_layers', 3);
+ $config->set('bottom_solid_layers', 3);
$config->set('fill_density', 0);
ok $test->(), "proper number of shells is applied even when fill density is none";
}