From: Daid Date: Fri, 18 May 2012 07:51:09 +0000 (+0200) Subject: Account for head movements when using support in the project planner. X-Git-Tag: RC4~7 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=46a0d36fabb6b6d02968594ad5a19fb38b215725;p=cura.git Account for head movements when using support in the project planner. --- diff --git a/Cura/gui/projectPlanner.py b/Cura/gui/projectPlanner.py index 01c52989..f2dec95b 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