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:
authortamasmeszaros <meszaros.q@gmail.com>2020-02-13 16:58:17 +0300
committertamasmeszaros <meszaros.q@gmail.com>2020-02-13 16:58:17 +0300
commit1cdde9097196ff6aab2d0c226391ced58709149d (patch)
tree8a0d32c11f9a47848e33af323e1b0c25df310e99 /src/libslic3r/PrintConfig.cpp
parent2f18101c771f19ce6963844fc758594bb47d4c74 (diff)
Add tooltip and rename labels of hollowing params
Diffstat (limited to 'src/libslic3r/PrintConfig.cpp')
-rw-r--r--src/libslic3r/PrintConfig.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index 25609e923..36d56c4c1 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -2903,7 +2903,7 @@ void PrintConfigDef::init_sla_params()
def->set_default_value(new ConfigOptionBool(false));
def = this->add("hollowing_min_thickness", coFloat);
- def->label = L("Hollowing thickness");
+ def->label = L("Wall thickness");
def->category = L("Hollowing");
def->tooltip = L("Minimum wall thickness of a hollowed model.");
def->sidetext = L("mm");
@@ -2913,7 +2913,7 @@ void PrintConfigDef::init_sla_params()
def->set_default_value(new ConfigOptionFloat(3.));
def = this->add("hollowing_quality", coFloat);
- def->label = L("Hollowing accuracy");
+ def->label = L("Accuracy");
def->category = L("Hollowing");
def->tooltip = L("Performance vs accuracy of calculation. Lower values may produce unwanted artifacts.");
def->min = 0;
@@ -2922,9 +2922,15 @@ void PrintConfigDef::init_sla_params()
def->set_default_value(new ConfigOptionFloat(0.5));
def = this->add("hollowing_closing_distance", coFloat);
- def->label = L("Hollowing closing distance");
+ def->label = L("Closing distance");
def->category = L("Hollowing");
- def->tooltip = "";//L("");
+ def->tooltip = L(
+ "Hollowing is done in two steps: first, an imaginary interior is "
+ "calculated deeper (offset plus the closing distance) in the object and "
+ "then it's inflated back to the specified offset. A greater closing "
+ "distance makes the interior more rounded. At zero, the interior will "
+ "resemble the exterior the most.");
+ def->sidetext = L("mm");
def->min = 0;
def->max = 10;
def->mode = comExpert;