mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-17 01:26:41 +08:00
Fix machine_nozzle_offset_y value
CURA-3964 This is such an obvious bug...
This commit is contained in:
parent
d0ef97b02c
commit
19495de7e8
@ -727,7 +727,7 @@ 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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user