mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-21 02:34:24 +08:00
#715 push Max size of printer to 100m
This commit is contained in:
parent
a8bc17816e
commit
7cab79e7db
@ -105,7 +105,7 @@ void BedShape::append_option_line(ConfigOptionsGroupShp optgroup, Parameter para
|
|||||||
def.type = coPoints;
|
def.type = coPoints;
|
||||||
def.set_default_value(new ConfigOptionPoints{ Vec2d(200, 200) });
|
def.set_default_value(new ConfigOptionPoints{ Vec2d(200, 200) });
|
||||||
def.min = 0;
|
def.min = 0;
|
||||||
def.max = 1200;
|
def.max = 100000;
|
||||||
def.label = get_option_label(param);
|
def.label = get_option_label(param);
|
||||||
def.tooltip = L("Size in X and Y of the rectangular plate.");
|
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) {
|
else if (param == Parameter::RectOrigin) {
|
||||||
def.type = coPoints;
|
def.type = coPoints;
|
||||||
def.set_default_value(new ConfigOptionPoints{ Vec2d(0, 0) });
|
def.set_default_value(new ConfigOptionPoints{ Vec2d(0, 0) });
|
||||||
def.min = -600;
|
def.min = -100000;
|
||||||
def.max = 600;
|
def.max = 100000;
|
||||||
def.label = get_option_label(param);
|
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.");
|
def.tooltip = L("Distance of the 0,0 G-code coordinate from the front left corner of the rectangle.");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user