#1016 Multimaterial Toolchange Temperature cannot be set to a value below 175°C

This commit is contained in:
remi durand 2021-03-17 14:57:30 +01:00
parent 376e5026c6
commit 260da3215c

View File

@ -1300,8 +1300,7 @@ void PrintConfigDef::init_fff_params()
def->label = L("Toolchange temperature");
def->tooltip = L("To further reduce stringing, it can be helpful to set a lower temperature just prior to extracting filament from the hotend.");
def->sidetext = L("°C");
def->min = 175;
def->max = 285;
def->min = 0;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionInts { 200 });