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-01-16 06:48:38 +0300
committersupermerill <merill@free.fr>2022-01-19 03:15:37 +0300
commit128fb32a89ce0894da9a4de7508b9f137c08fd17 (patch)
treec7c2cf70db3a9f28a0ce0f66297d838f84fda4da /src/libslic3r/PrintConfig.cpp
parentc0f49ed093de98c303795418c42685c08dfe41e2 (diff)
Fix 2.4 layout & colors
* use the new Notebook class that has separate button from panel, so the tab layout can have more button than panels, and so doesn't need to move the platter from tab to tab. Cleaner, and should now work on all os. * change color settings: now only 3 and all colors are re-created from these. Three separate because the text may need to be darker on some hue, and the plater icon may need to be lighter on some shades
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 d251485fe..37a8ce32b 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -3583,7 +3583,7 @@ void PrintConfigDef::init_fff_params()
def->category = OptionCategory::perimeter;
def->tooltip = L("Minimum unsupported width for an extrusion to apply the bridge fan & overhang speed to this overhang."
" Can be in mm or in a % of the nozzle diameter."
- " Set to 0 to deactivate.");
+ " Set to 0 to deactivate overhangs.");
def->ratio_over = "nozzle_diameter";
def->min = 0;
def->mode = comExpert;
@@ -3595,7 +3595,7 @@ void PrintConfigDef::init_fff_params()
def->category = OptionCategory::perimeter;
def->tooltip = L("Minimum unsupported width for an extrusion to apply the bridge flow to this overhang."
" Can be in mm or in a % of the nozzle diameter."
- " Set to 0 to deactivate.");
+ " Set to 0 to deactivate bridge flow for overhangs.");
def->ratio_over = "nozzle_diameter";
def->min = 0;
def->max_literal = { 10, true };