mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 11:17:49 -06:00
Fix function call to _getSettingProperty
Don't know who ever tested this... Contributes to issue CURA-2407.
This commit is contained in:
parent
61477078a4
commit
6783b4b3ef
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ class ConvexHullDecorator(SceneNodeDecorator):
|
|||
elif adhesion_type == "skirt":
|
||||
extra_margin = max(
|
||||
0, self._getSettingProperty("skirt_gap", "value") +
|
||||
self._getSettingPropertyy("skirt_line_count", "value") * self._getSettingProperty("skirt_brim_line_width", "value"))
|
||||
self._getSettingProperty("skirt_line_count", "value") * self._getSettingProperty("skirt_brim_line_width", "value"))
|
||||
else:
|
||||
raise Exception("Unknown bed adhesion type. Did you forget to update the convex hull calculations for your new bed adhesion type?")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue