From 9231c42eec33240ba05245f2b5a0a3f94ece605d Mon Sep 17 00:00:00 2001 From: Michael Wren Date: Tue, 24 Apr 2012 12:09:39 -0500 Subject: [PATCH] Fix for skeinforge comb crash on thin structures. --- .../skeinforge_plugins/craft_plugins/comb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skein_engines/skeinforge-47/skeinforge_application/skeinforge_plugins/craft_plugins/comb.py b/skein_engines/skeinforge-47/skeinforge_application/skeinforge_plugins/craft_plugins/comb.py index 893003b92..ef6405152 100644 --- a/skein_engines/skeinforge-47/skeinforge_application/skeinforge_plugins/craft_plugins/comb.py +++ b/skein_engines/skeinforge-47/skeinforge_application/skeinforge_plugins/craft_plugins/comb.py @@ -146,7 +146,7 @@ def getSegment(self, boundarySegmentIndex, boundarySegments, perimeterWidth, run nextBegin = nextBoundarySegment.segment[0] end = getJumpPointIfInside(self.boundary, nextBegin, perimeterWidth, runningJumpSpace) if end == None: - end = self.boundary.segment[1] + end = self.segment[1] nextBegin = getJumpPointIfInside(nextBoundarySegment.boundary, end, perimeterWidth, runningJumpSpace) if nextBegin != None: nextBoundarySegment.segment[0] = nextBegin