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
path: root/src
diff options
context:
space:
mode:
authorsupermerill <merill@free.fr>2021-12-10 21:24:16 +0300
committersupermerill <merill@free.fr>2021-12-10 21:24:16 +0300
commitc0fca1ce33bc8db3d1ee2f46e8fbc74b32a5ed3f (patch)
treefbdc4c61b55d2049dc9f35987dad1d5ff721f926 /src
parent5f8d634fc17c676299d1cd62e6e3623aeb6f247a (diff)
Don't allow 0-speed retraction
supermerill/SuperSlicer#2033
Diffstat (limited to 'src')
-rw-r--r--src/libslic3r/PrintConfig.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index e67320a34..d67c516fd 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -3512,6 +3512,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("The speed for retractions (this only applies to the extruder motor).");
def->sidetext = L("mm/s");
def->mode = comAdvanced;
+ def->min = 0.001;
def->is_vector_extruder = true;
def->set_default_value(new ConfigOptionFloats { 40. });