Don't allow 0-speed retraction

supermerill/SuperSlicer#2033
This commit is contained in:
supermerill 2021-12-10 19:24:16 +01:00
parent 5f8d634fc1
commit c0fca1ce33

View File

@ -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. });