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-02-02 00:38:06 +0300
committersupermerill <merill@free.fr>2022-02-02 01:13:40 +0300
commit878ea577c7f320ab7d57720995ca47961ad5ceb6 (patch)
treec26aa5eb2cb5340d52090590409acd3842830d9d /src/libslic3r/PrintConfig.cpp
parent994997ab90856e4a10b0f4e7a45e3c42ab667e27 (diff)
Fix phantom solid surfaces.
move solid_over_perimeters (as it only works with ensure_vertical_shell_thickness activated) TODO: maybe try to not create too thin solid surfaces in the first place? and really merge same surfaces?
Diffstat (limited to 'src/libslic3r/PrintConfig.cpp')
-rw-r--r--src/libslic3r/PrintConfig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index 8d54b5caf..11468c959 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -763,7 +763,7 @@ void PrintConfigDef::init_fff_params()
def->category = OptionCategory::perimeter;
def->tooltip = L("Add solid infill near sloping surfaces to guarantee the vertical shell thickness "
"(top+bottom solid layers)."
- "\n!! solid_over_perimeters may erase these surfaces !! So you should deactivate it if you want to use this.");
+ "\n!! solid_over_perimeters may erase these surfaces !!");
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBool(false));
@@ -4022,7 +4022,7 @@ void PrintConfigDef::init_fff_params()
" the top/bottom solid layer count, it won't do anything. If this setting is set to 1, it will evict "
" all solid fill above/below perimeters. "
"\nSet zero to disable."
- "\n!! ensure_vertical_shell_thickness may be erased by this setting !!.");
+ "\n!! ensure_vertical_shell_thickness needs to be activated so this algorithm can work !!.");
def->min = 0;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionInt(2));