diff options
| author | Lex Neva <github.com@lexneva.name> | 2019-01-26 19:48:25 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2019-02-16 16:53:38 -0500 |
| commit | fdd9a74fd6fc6e0aacc6766e186c4ffb2fec8e7a (patch) | |
| tree | 223795d37af4befc3a938a720b0feac7a99c23be /lib | |
| parent | f3cdcfbdfa693c569981c5ec6b3c87e6f352916e (diff) | |
fix argument bug in auto-satin
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/stitches/auto_satin.py | 2 |
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): |
