Build volume now uses linecount for disallowed areas

CURA-1152
This commit is contained in:
Jaime van Kessel 2016-03-17 15:51:36 +01:00
parent 479c6c3319
commit eeb2c0454a

View file

@ -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")