#715 push Max size of printer to 100m

This commit is contained in:
supermerill 2020-11-25 14:31:19 +01:00
parent a8bc17816e
commit 7cab79e7db
2 changed files with 41 additions and 41 deletions

View File

@ -105,7 +105,7 @@ void BedShape::append_option_line(ConfigOptionsGroupShp optgroup, Parameter para
def.type = coPoints;
def.set_default_value(new ConfigOptionPoints{ Vec2d(200, 200) });
def.min = 0;
def.max = 1200;
def.max = 100000;
def.label = get_option_label(param);
def.tooltip = L("Size in X and Y of the rectangular plate.");
@ -115,8 +115,8 @@ void BedShape::append_option_line(ConfigOptionsGroupShp optgroup, Parameter para
else if (param == Parameter::RectOrigin) {
def.type = coPoints;
def.set_default_value(new ConfigOptionPoints{ Vec2d(0, 0) });
def.min = -600;
def.max = 600;
def.min = -100000;
def.max = 100000;
def.label = get_option_label(param);
def.tooltip = L("Distance of the 0,0 G-code coordinate from the front left corner of the rectangle.");