Increase max printer height to 2 meters

#452
This commit is contained in:
SoftFever 2023-03-16 01:12:51 +08:00
parent 7e03210181
commit dfa5d42d84

View file

@ -390,7 +390,7 @@ void PrintConfigDef::init_common_params()
def->tooltip = L("Maximum printable height which is limited by mechanism of printer"); def->tooltip = L("Maximum printable height which is limited by mechanism of printer");
def->sidetext = L("mm"); def->sidetext = L("mm");
def->min = 0; def->min = 0;
def->max = 1000; def->max = 2000;
def->mode = comSimple; def->mode = comSimple;
def->set_default_value(new ConfigOptionFloat(100.0)); def->set_default_value(new ConfigOptionFloat(100.0));