Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2017-07-03 18:10:59 +0300
committerJaime van Kessel <nallath@gmail.com>2017-07-03 18:10:59 +0300
commit5895f277927dd26d781289631722e1d8e47f1845 (patch)
treec4605e6dad86f235f49b6a85a82ea3fe0ea0a623 /cura/BuildVolume.py
parent68cae135a9c4f5e1efdbfb7b6d0c0f3681549f2f (diff)
Revert "Also invert nozzle offset when offsetting machine-specified disallowed areas"
This reverts commit 319559740dd8c8c2f9ffad637bee43cef9345073. This was already fixed (line 734 inveted it). This code breaks it when there is no extruder
Diffstat (limited to 'cura/BuildVolume.py')
-rwxr-xr-xcura/BuildVolume.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py
index de36b80123..53e1471f7b 100755
--- a/cura/BuildVolume.py
+++ b/cura/BuildVolume.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2017 Ultimaker B.V.
+# Copyright (c) 2016 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher.
from cura.Settings.ExtruderManager import ExtruderManager
@@ -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: