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-07-25 00:52:31 +0300
committersupermerill <merill@free.fr>2022-08-10 22:00:55 +0300
commit061c018853c77ea8db7c3e3eae5d44247d7ae5be (patch)
tree0c2edcbe08fb122ac3fd3c296cb9e41d0a2805ae /src/libslic3r/PrintConfig.cpp
parent3d5eb916b2c74c050ee1f3b16e4d92b5840f98fa (diff)
Add a way to deactivate the anti-hysteresis check for perimeters.
supermerill/SuperSlicer#2967
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));