Fix 'min' accidentally defined as 'max'

This commit is contained in:
Rob Trame
2023-11-01 20:14:19 -06:00
parent b7d9899ef3
commit e76663d19e

View File

@@ -651,7 +651,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Bed temperature of the initial layer. "
"Value 0 means the filament does not support to print on the Textured PEI Plate");
def->sidetext = L("°C");
def->max = 0;
def->min = 0;
def->max = 300;
def->set_default_value(new ConfigOptionInts{45});