mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-06 21:44:08 -06:00
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
This commit is contained in:
parent
54f8cb9591
commit
c9f6421839
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue