Draft shield option is now an enum (Disabled/Limited/Enabled)
This commit is contained in:
parent
6eeedf2bc6
commit
b466f18326
5 changed files with 34 additions and 15 deletions
|
@ -403,7 +403,7 @@ ExtrusionEntityCollection make_brim(const Print &print, PrintTryCancel try_cance
|
|||
return (bt == btOuterOnly || bt == btOuterAndInner) && print.config().skirt_distance.value < object->config().brim_width;
|
||||
});
|
||||
|
||||
const bool draft_shield = print.config().draft_shield;
|
||||
const bool draft_shield = print.config().draft_shield != dsDisabled;
|
||||
|
||||
|
||||
// If there is a possibility that brim intersects skirt, go through loops and split those extrusions
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue