summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2019-01-26 19:48:25 -0500
committerLex Neva <github.com@lexneva.name>2019-02-16 16:53:38 -0500
commitfdd9a74fd6fc6e0aacc6766e186c4ffb2fec8e7a (patch)
tree223795d37af4befc3a938a720b0feac7a99c23be /lib
parentf3cdcfbdfa693c569981c5ec6b3c87e6f352916e (diff)
fix argument bug in auto-satin
Diffstat (limited to 'lib')
-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):