mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 06:23:59 -06:00
Build volume now uses linecount for disallowed areas
CURA-1152
This commit is contained in:
parent
479c6c3319
commit
eeb2c0454a
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ class BuildVolume(SceneNode):
|
|||
skirt_line_count = profile.getSettingValue("skirt_line_count")
|
||||
skirt_size = skirt_distance + (skirt_line_count * profile.getSettingValue("skirt_line_width"))
|
||||
elif adhesion_type == "brim":
|
||||
skirt_size = profile.getSettingValue("brim_width")
|
||||
skirt_size = profile.getSettingValue("brim_line_count") * profile.getSettingValue("skirt_line_width")
|
||||
elif adhesion_type == "raft":
|
||||
skirt_size = profile.getSettingValue("raft_margin")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue