From: Youness Alaoui Date: Thu, 12 Feb 2015 19:56:00 +0000 (-0500) Subject: Fix removal of the Z-Offset setting in a previous merge X-Git-Tag: lulzbot-15.02.1-1.01~69 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=699560303d1de927888ece7d8af8013d994ecb27;p=cura.git Fix removal of the Z-Offset setting in a previous merge --- 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)