From 46a0d36fabb6b6d02968594ad5a19fb38b215725 Mon Sep 17 00:00:00 2001 From: Daid Date: Fri, 18 May 2012 09:51:09 +0200 Subject: [PATCH] Account for head movements when using support in the project planner. --- Cura/gui/projectPlanner.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cura/gui/projectPlanner.py b/Cura/gui/projectPlanner.py index 01c5298..f2dec95 100644 --- a/Cura/gui/projectPlanner.py +++ b/Cura/gui/projectPlanner.py @@ -492,6 +492,9 @@ class projectPlanner(wx.Frame): skirtSize = profile.getProfileSettingFloat('skirt_line_count') * profile.calculateEdgeWidth() + profile.getProfileSettingFloat('skirt_gap') extraSizeMin = extraSizeMin + util3d.Vector3(skirtSize, skirtSize, 0) extraSizeMax = extraSizeMax + util3d.Vector3(skirtSize, skirtSize, 0) + if profile.getProfileSetting('support') != 'None': + extraSizeMin = extraSizeMin + util3d.Vector3(3.0, 0, 0) + extraSizeMax = extraSizeMax + util3d.Vector3(3.0, 0, 0) if extraSizeMin.x > extraSizeMax.x: posX = self.machineSize.x