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:
authorVojtech Bubnik <bubnikv@gmail.com>2021-11-19 18:30:37 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-11-19 18:30:37 +0300
commit55a555c848b5bad5cbec22394b0dc5b10722120d (patch)
tree5acfc3862382cd502506448263fc7fe27806b2b6 /src/libslic3r/PrintConfig.cpp
parent1280b03a60f4b30feafad3fe8c386f43aa612570 (diff)
Tooltip for the new SLA material parameter "material_print_speed"
Diffstat (limited to 'src/libslic3r/PrintConfig.cpp')
-rw-r--r--src/libslic3r/PrintConfig.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index 18defae2c..c63780449 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -3739,7 +3739,9 @@ void PrintConfigDef::init_sla_params()
def = this->add("material_print_speed", coEnum);
def->label = L("Print speed");
- def->tooltip = L("lorem ipsum");
+ def->tooltip = L(
+ "A slower printing profile might be necessary when using materials with higher viscosity "
+ "or with some hollowed parts. It slows down the tilt movement and adds a delay before exposure.");
def->enum_keys_map = &ConfigOptionEnum<SLAMaterialSpeed>::get_enum_values();
def->enum_values.push_back("slow");
def->enum_values.push_back("fast");