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
No known key found for this signature in database
GPG key ID: CACD148C357C2BC1

View file

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