From c9f6421839772a0d85ce95ab5fa7a77c91fe24ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrice=20C=C3=B4t=C3=A9?= Date: Tue, 10 Jan 2023 09:29:33 -0500 Subject: [PATCH] Remove limitations for bed_exclude_area (#151) * Remove limitations for bed_exclude_area Was limited to 256mm, not ractical to exlcude half of the bed (for instance on IDEX printers) * Add RatRig V-Cast printer Add RatRig V-Cast printer Add RatRig V-Cast printer Add RatRig V-Cast printer --- src/slic3r/GUI/Field.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Field.cpp b/src/slic3r/GUI/Field.cpp index 3d09afd566..f242ce923e 100644 --- a/src/slic3r/GUI/Field.cpp +++ b/src/slic3r/GUI/Field.cpp @@ -385,7 +385,7 @@ void Field::get_value_by_opt_type(wxString& str, const bool check_value/* = true wxString y_str = thumbnail.GetNextToken(); if (y_str.ToDouble(&y) && !thumbnail.HasMoreTokens()) { if (m_opt_id == "bed_exclude_area") { - if (0 <= x && x <= 256 && 0 <= y && y <= 256) { + if (0 <= x && 0 <= y) { out_values.push_back(Vec2d(x, y)); continue; }