From 19495de7e82de32bccf5b79cad06a94d3d7b7d74 Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Tue, 4 Jul 2017 13:24:12 +0200 Subject: [PATCH] Fix machine_nozzle_offset_y value CURA-3964 This is such an obvious bug... --- cura/BuildVolume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index de36b80123..046fb505cc 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -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: