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@fr.fr>2020-10-28 13:36:08 +0300
committersupermerill <merill@fr.fr>2020-11-03 02:07:48 +0300
commitef53b16d9946e06eaff472ab2149d3c4048df58b (patch)
tree6170ff3a120affe7a315fa31699041b535a301a5
parent6bc0ac217bdf550fb18cea98e48d0cf2405fe1f2 (diff)
fix disbale z_step
-rw-r--r--src/libslic3r/PrintConfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index 50e4f2db7..9f788206e 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -3630,7 +3630,7 @@ void PrintConfigDef::init_fff_params()
"\nPut 0 to disable.");
def->cli = "z-step=f";
def->sidetext = L("mm");
- def->min = 0.0001;
+ def->min = 0;
def->mode = comExpert;
def->set_default_value(new ConfigOptionFloat(0.005));