mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-14 04:15:54 +08: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
@ -385,7 +385,7 @@ void Field::get_value_by_opt_type(wxString& str, const bool check_value/* = true
|
|||||||
wxString y_str = thumbnail.GetNextToken();
|
wxString y_str = thumbnail.GetNextToken();
|
||||||
if (y_str.ToDouble(&y) && !thumbnail.HasMoreTokens()) {
|
if (y_str.ToDouble(&y) && !thumbnail.HasMoreTokens()) {
|
||||||
if (m_opt_id == "bed_exclude_area") {
|
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));
|
out_values.push_back(Vec2d(x, y));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user