mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-21 20:18:17 +08:00
Introduced a limit on max print z (1.2 m)
A follow-up of 815989d, related to #2877
This commit is contained in:
parent
4b6bcd7028
commit
2c244732db
@ -85,6 +85,8 @@ void PrintConfigDef::init_common_params()
|
|||||||
def->label = L("Max print height");
|
def->label = L("Max print height");
|
||||||
def->tooltip = L("Set this to the maximum height that can be reached by your extruder while printing.");
|
def->tooltip = L("Set this to the maximum height that can be reached by your extruder while printing.");
|
||||||
def->sidetext = L("mm");
|
def->sidetext = L("mm");
|
||||||
|
def->min = 0;
|
||||||
|
def->max = 1200;
|
||||||
def->mode = comAdvanced;
|
def->mode = comAdvanced;
|
||||||
def->set_default_value(new ConfigOptionFloat(200.0));
|
def->set_default_value(new ConfigOptionFloat(200.0));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user