From 6022fd2bba376b4dfd183b40e70b2f0465888e41 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Wed, 20 Jan 2016 12:34:09 -0500 Subject: [PATCH] Fix center coords for lulzbot mini if using non square size --- 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 bb13a14a..f71ca916 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -1215,7 +1215,7 @@ def getMachineCenterCoords(): return [0, 0] elif getMachineSetting('machine_type') == 'lulzbot_mini': return [(getMachineSettingFloat('machine_width') / 2) + 2.5, - (getMachineSettingFloat('machine_width') / 2) + 0.5] + (getMachineSettingFloat('machine_depth') / 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