From e24e5e774b7bb51db863ed2f573af4ad43d67a7a Mon Sep 17 00:00:00 2001 From: Steven Abadie Date: Wed, 17 Dec 2014 22:08:32 -0700 Subject: [PATCH] Fixed off set addition from last commit. --- Cura/util/profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/util/profile.py b/Cura/util/profile.py index 15b077b6..e680e59c 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -1107,7 +1107,7 @@ def calculateObjectSizeOffsets(): def getMachineCenterCoords(): if getMachineSetting('machine_center_is_zero') == 'True': return [0, 0] - elif profile.getMachineSetting('machine_type') == 'lulzbot_mini': + elif getMachineSetting('machine_type') == 'lulzbot_mini': return [(getMachineSettingFloat('machine_width') / 2) + 2, (getMachineSettingFloat('machine_width') / 2) + 2] return [getMachineSettingFloat('machine_width') / 2, getMachineSettingFloat('machine_depth') / 2] -- 2.30.2