#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.");

View File

@ -1455,7 +1455,7 @@ bool GUI_App::load_language(wxString language, bool initial)
if (language_info != nullptr && language_info->LayoutDirection == wxLayout_RightToLeft) {
BOOST_LOG_TRIVIAL(trace) << boost::format("The following language code requires right to left layout, which is not supported by SuperSlicer: %1%") % language_info->CanonicalName.ToUTF8().data();
language_info = nullptr;
}
}
if (language_info == nullptr) {
// PrusaSlicer does not support the Right to Left languages yet.