mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-14 18:27:51 -06:00
fix: don't expand disallowed areas when using none platform adhesion (CURA-759)
This commit is contained in:
parent
337cd127dc
commit
995705f82b
2 changed files with 4 additions and 0 deletions
|
@ -236,6 +236,8 @@ class ConvexHullDecorator(SceneNodeDecorator):
|
|||
extra_margin = max(0, self._getSettingProperty("raft_margin", "value"))
|
||||
elif adhesion_type == "brim":
|
||||
extra_margin = max(0, self._getSettingProperty("brim_line_count", "value") * self._getSettingProperty("skirt_brim_line_width", "value"))
|
||||
elif adhesion_type == "none":
|
||||
extra_margin = 0
|
||||
elif adhesion_type == "skirt":
|
||||
extra_margin = max(
|
||||
0, self._getSettingProperty("skirt_gap", "value") +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue