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:
authorGhostkeeper <rubend@tutanota.com>2017-06-29 14:45:02 +0300
committerGhostkeeper <rubend@tutanota.com>2017-06-29 14:45:02 +0300
commit53e35daf02660ad53e4a332d6231d33063dd64d9 (patch)
treecdebc607b45b56ceb0d2b62ca53c7ecdc3cf5b73 /cura/BuildVolume.py
parentab384ba8ec7b1e1ed7afd4e510f89d8eade6c94c (diff)
parenta89e626dfa6b343c648e2d79fda67aeb1cd90f45 (diff)
Merge branch 'master' of github.com:Ultimaker/Cura
Diffstat (limited to 'cura/BuildVolume.py')
-rwxr-xr-xcura/BuildVolume.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py
index 2ad3f4dda1..53e1471f7b 100755
--- a/cura/BuildVolume.py
+++ b/cura/BuildVolume.py
@@ -727,9 +727,11 @@ 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:
+ offset_y = -offset_y
result[extruder_id] = []
for polygon in machine_disallowed_polygons: