summaryrefslogtreecommitdiff
path: root/lib/stitches/auto_satin.py
diff options
context:
space:
mode:
authorLex Neva <lexelby@users.noreply.github.com>2019-02-16 17:07:34 -0500
committerGitHub <noreply@github.com>2019-02-16 17:07:34 -0500
commit2ab4c451e8042868b2516a6b3fe1f60836f27ffe (patch)
tree0ce616ac57e6a2aa507461486233c71373467c9a /lib/stitches/auto_satin.py
parentbd6e4d9d32fd314b66f3c5d798c7151bf543d07f (diff)
parentfa3236372bcee28f4aaa78da47b68c5d7f32cca4 (diff)
tons of bug fixes (#364)
bug fixes
Diffstat (limited to 'lib/stitches/auto_satin.py')
-rw-r--r--lib/stitches/auto_satin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stitches/auto_satin.py b/lib/stitches/auto_satin.py
index 7bc3e67c..e204a445 100644
--- a/lib/stitches/auto_satin.py
+++ b/lib/stitches/auto_satin.py
@@ -242,7 +242,7 @@ class RunningStitch(object):
@cache
def reversed(self):
- return RunningStitch(shgeo.LineString(reversed(self.path.coords)), self.style)
+ return RunningStitch(shgeo.LineString(reversed(self.path.coords)), self.original_element)
def is_sequential(self, other):
if not isinstance(other, RunningStitch):