mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-10 08:17:51 -06:00
Fix 'min' accidentally defined as 'max'
This commit is contained in:
parent
b7d9899ef3
commit
e76663d19e
1 changed files with 1 additions and 1 deletions
|
@ -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});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue