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:
Diffstat (limited to 'src/libslic3r/PrintConfig.cpp')
-rw-r--r--src/libslic3r/PrintConfig.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index f463b002a..943f24bfc 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -5146,7 +5146,9 @@ void PrintConfigDef::init_fff_params()
def->category = OptionCategory::perimeter;
def->tooltip = L("Allow outermost perimeter to overlap itself to avoid the use of thin walls. Note that flow isn't adjusted and so this will result in over-extruding and undefined behavior."
"\n100% means that perimeters can overlap completly on top of each other."
- "\n0% will deactivate this setting");
+ "\n0% will deactivate this setting."
+ "\nValues below 2% don't have any effect."
+ "\n-1% will also deactivate the anti-hysteris checks for external perimeters.");
def->sidetext = "%";
def->mode = comExpert | comSuSi;
def->set_default_value(new ConfigOptionPercent(80));
@@ -5157,7 +5159,9 @@ void PrintConfigDef::init_fff_params()
def->category = OptionCategory::perimeter;
def->tooltip = L("Allow all perimeters to overlap, instead of just external ones."
"\n100% means that perimeters can overlap completly on top of each other."
- "\n0% will deactivate this setting");
+ "\n0% will deactivate this setting."
+ "\nValues below 2% don't have any effect."
+ "\n-1% will also deactivate the anti-hysteris checks for internal perimeters.");
def->sidetext = "%";
def->mode = comExpert | comSuSi;
def->set_default_value(new ConfigOptionPercent(20));