Fix machine_nozzle_offset_y value

CURA-3964

This is such an obvious bug...
This commit is contained in:
Lipu Fei 2017-07-04 13:24:12 +02:00
parent d0ef97b02c
commit 19495de7e8

View File

@ -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: