From 699560303d1de927888ece7d8af8013d994ecb27 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Thu, 12 Feb 2015 14:56:00 -0500 Subject: [PATCH] Fix removal of the Z-Offset setting in a previous merge --- Cura/util/sliceEngine.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cura/util/sliceEngine.py b/Cura/util/sliceEngine.py index 7ec48103..01b7ad6b 100644 --- a/Cura/util/sliceEngine.py +++ b/Cura/util/sliceEngine.py @@ -504,6 +504,7 @@ class Engine(object): 'extruderOffset[2].Y': int(profile.getMachineSettingFloat('extruder_offset_y2') * 1000), 'extruderOffset[3].X': int(profile.getMachineSettingFloat('extruder_offset_x3') * 1000), 'extruderOffset[3].Y': int(profile.getMachineSettingFloat('extruder_offset_y3') * 1000), + 'zOffset': int(profile.getMachineSettingFloat('extruder_z_offset') * 1000), 'fixHorrible': 0, } fanFullHeight = int(profile.getProfileSettingFloat('fan_full_height') * 1000) -- 2.30.2