mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 14:44:13 -06:00
Recompute convex hull if xy_offset changes
With room for more settings. Contributes to issue CURA-2407.
This commit is contained in:
parent
0bcc8f9a5d
commit
7c573e3c29
1 changed files with 12 additions and 1 deletions
|
@ -115,7 +115,13 @@ class ConvexHullDecorator(SceneNodeDecorator):
|
||||||
self._convex_hull_node = hull_node
|
self._convex_hull_node = hull_node
|
||||||
|
|
||||||
def _onSettingValueChanged(self, key, property_name):
|
def _onSettingValueChanged(self, key, property_name):
|
||||||
if key in self._affected_settings and property_name == "value":
|
if property_name != "value": #Not the value that was changed.
|
||||||
|
return
|
||||||
|
|
||||||
|
if key in self._affected_settings:
|
||||||
|
self._onChanged()
|
||||||
|
if key in self._influencing_settings:
|
||||||
|
self._init2DConvexHullCache() #Invalidate the cache.
|
||||||
self._onChanged()
|
self._onChanged()
|
||||||
|
|
||||||
def _init2DConvexHullCache(self):
|
def _init2DConvexHullCache(self):
|
||||||
|
@ -313,3 +319,8 @@ class ConvexHullDecorator(SceneNodeDecorator):
|
||||||
"adhesion_type", "raft_base_thickness", "raft_interface_thickness", "raft_surface_layers",
|
"adhesion_type", "raft_base_thickness", "raft_interface_thickness", "raft_surface_layers",
|
||||||
"raft_surface_thickness", "raft_airgap", "raft_margin", "print_sequence",
|
"raft_surface_thickness", "raft_airgap", "raft_margin", "print_sequence",
|
||||||
"skirt_gap", "skirt_line_count", "skirt_brim_line_width", "skirt_distance", "brim_line_count"]
|
"skirt_gap", "skirt_line_count", "skirt_brim_line_width", "skirt_distance", "brim_line_count"]
|
||||||
|
|
||||||
|
## Settings that change the convex hull.
|
||||||
|
#
|
||||||
|
# If these settings change, the convex hull should be recalculated.
|
||||||
|
_influencing_settings = {"xy_offset"}
|
Loading…
Add table
Add a link
Reference in a new issue