fix argument bug in auto-satin

pull/364/head
Lex Neva 2019-01-26 19:48:25 -05:00
rodzic f3cdcfbdfa
commit fdd9a74fd6
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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):