mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-19 04:37:51 -06:00
Merge branch 'master' of github.com:Ultimaker/Cura
This commit is contained in:
commit
53e35daf02
1 changed files with 3 additions and 1 deletions
|
@ -727,9 +727,11 @@ class BuildVolume(SceneNode):
|
|||
offset_x = extruder.getProperty("machine_nozzle_offset_x", "value")
|
||||
if offset_x is None:
|
||||
offset_x = 0
|
||||
offset_y = -extruder.getProperty("machine_nozzle_offset_y", "value")
|
||||
offset_y = extruder.getProperty("machine_nozzle_offset_y", "value")
|
||||
if offset_y is None:
|
||||
offset_y = 0
|
||||
else:
|
||||
offset_y = -offset_y
|
||||
result[extruder_id] = []
|
||||
|
||||
for polygon in machine_disallowed_polygons:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue