mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-18 04:07:57 -06:00
Fix machine_nozzle_offset_y value
CURA-3964 This is such an obvious bug...
This commit is contained in:
parent
d0ef97b02c
commit
19495de7e8
1 changed files with 1 additions and 1 deletions
|
@ -727,7 +727,7 @@ class BuildVolume(SceneNode):
|
||||||
offset_x = extruder.getProperty("machine_nozzle_offset_x", "value")
|
offset_x = extruder.getProperty("machine_nozzle_offset_x", "value")
|
||||||
if offset_x is None:
|
if offset_x is None:
|
||||||
offset_x = 0
|
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:
|
if offset_y is None:
|
||||||
offset_y = 0
|
offset_y = 0
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue