don't set trim or stop on underlay

pull/29/head
Lex Neva 2018-01-21 19:28:36 -05:00
rodzic 928b20f738
commit 77b0e53497
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -338,9 +338,9 @@ class EmbroideryElement(object):
def embroider(self, last_patch):
patches = self.to_patches(last_patch)
for patch in patches:
patch.trim_after = self.trim_after
patch.stop_after = self.stop_after
if patches:
patches[-1].trim_after = self.trim_after
patches[-1].stop_after = self.stop_after
return patches