mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-21 02:44:27 +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.");
|
||||||
|
|
||||||
|
@ -1455,7 +1455,7 @@ bool GUI_App::load_language(wxString language, bool initial)
|
|||||||
if (language_info != nullptr && language_info->LayoutDirection == wxLayout_RightToLeft) {
|
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();
|
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;
|
language_info = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (language_info == nullptr) {
|
if (language_info == nullptr) {
|
||||||
// PrusaSlicer does not support the Right to Left languages yet.
|
// PrusaSlicer does not support the Right to Left languages yet.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user