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-03-19 00:49:01 +0300
committersupermerill <merill@free.fr>2022-03-23 02:12:11 +0300
commit5038a0288f6c839b63dbcaf949cb4731cf84635c (patch)
tree2be46be3c5b33b2f701d4a52d1ceb391992ae47c /src/libslic3r/PrintConfig.cpp
parent67352b5dd8859bb79bcb1fbbaa55899eeefcbdf9 (diff)
fix typo & use s_seam_position for all modes
supermerill/SuperSlicer#2491
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 e96121540..a78a2e239 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -2572,7 +2572,7 @@ void PrintConfigDef::init_fff_params()
def->category = OptionCategory::width;
def->tooltip = L("This setting allows you to reduce the overlap between the perimeters and the gap fill."
" 100% means that no gaps are left, and 0% means that the gap fill won't touch the perimeters."
- "May be useful to reduce if you can see the gapfill on the exterrnal surface.");
+ "\nMay be useful if you can see the gapfill on the exterrnal surface, to reduce that artifact.");
def->sidetext = L("%");
def->min = 0;
def->max = 100;
@@ -4225,7 +4225,7 @@ void PrintConfigDef::init_fff_params()
def->label = L("Seam position");
def->category = OptionCategory::perimeter;
def->tooltip = L("Position of perimeters' starting points."
- "\nCost-based option let you choose the angel and travel cost. A high angle cost will place the seam where it can be hidden by a corner"
+ "\nCost-based option let you choose the angle and travel cost. A high angle cost will place the seam where it can be hidden by a corner"
", the travel cost place the seam near the last position (often at the end of the previous infill).");
def->enum_keys_map = &ConfigOptionEnum<SeamPosition>::get_enum_values();
def->enum_values.push_back("cost");