FIX: some config param range

Change-Id: Ia19f51e121bd1966e35efef1127d685b07ca676f
This commit is contained in:
chunmao.guo 2023-03-06 15:06:42 +08:00 committed by Lane.Wei
parent 65db26a27d
commit 68c9cb0a8c
1 changed files with 4 additions and 4 deletions

View File

@ -548,7 +548,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 Cool Plate");
def->sidetext = L("°C");
def->max = 0;
def->min = 0;
def->max = 120;
def->set_default_value(new ConfigOptionInts{ 35 });
@ -558,7 +558,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 Engineering Plate");
def->sidetext = L("°C");
def->max = 0;
def->min = 0;
def->max = 120;
def->set_default_value(new ConfigOptionInts{ 45 });
@ -568,7 +568,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 High Temp Plate");
def->sidetext = L("°C");
def->max = 0;
def->min = 0;
def->max = 120;
def->set_default_value(new ConfigOptionInts{ 45 });
@ -578,7 +578,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 = 120;
def->set_default_value(new ConfigOptionInts{45});