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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsupermerill <merill@free.fr>2022-04-11 15:51:07 +0300
committersupermerill <merill@free.fr>2022-04-15 12:54:25 +0300
commit4bf1222ab5f8d263bb375730083fe253d6eca253 (patch)
tree28bcc88d55b4eca0af82f1f23f2829dff523a373 /src/libslic3r/PrintConfig.cpp
parentedaffa661c341c1c508ea7202e5fa8e7bef2a935 (diff)
Don't remove solid infill on slope for spiral vase
also set solid_over_perimeters to 0 for spiral_vase supermerill/SuperSlicer#2654
Diffstat (limited to 'src/libslic3r/PrintConfig.cpp')
-rw-r--r--src/libslic3r/PrintConfig.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index 9272b8534..e0db228a2 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -7483,6 +7483,7 @@ void DynamicPrintConfig::normalize_fdm()
this->opt<ConfigOptionInt>("top_solid_layers", true)->value = 0;
this->opt<ConfigOptionPercent>("fill_density", true)->value = 0;
this->opt<ConfigOptionBool>("support_material", true)->value = false;
+ this->opt<ConfigOptionInt>("solid_over_perimeters")->value = 0;
this->opt<ConfigOptionInt>("support_material_enforce_layers")->value = 0;
this->opt<ConfigOptionBool>("exact_last_layer_height", true)->value = false;
this->opt<ConfigOptionBool>("ensure_vertical_shell_thickness", true)->value = false;