From 56978b7fe3db99aac0e0d8da2ea9c830f4a9f024 Mon Sep 17 00:00:00 2001 From: reprappermc Date: Thu, 18 Dec 2014 09:18:13 -0700 Subject: [PATCH] Additional changes to Mini center offset. --- 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 e680e59c..24776b8e 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -1108,7 +1108,7 @@ def getMachineCenterCoords(): if getMachineSetting('machine_center_is_zero') == 'True': return [0, 0] elif getMachineSetting('machine_type') == 'lulzbot_mini': - return [(getMachineSettingFloat('machine_width') / 2) + 2, (getMachineSettingFloat('machine_width') / 2) + 2] + return [(getMachineSettingFloat('machine_width') / 2) + 2.5, (getMachineSettingFloat('machine_width') / 2) + 0.5] return [getMachineSettingFloat('machine_width') / 2, getMachineSettingFloat('machine_depth') / 2] #Returns a list of convex polygons, first polygon is the allowed area of the machine, -- 2.30.2