Fixed negated clone logic (whoops)

pull/2851/head
CapellanCitizen 2024-04-21 21:41:55 -04:00
rodzic 2a77b9d449
commit 56c4177f14
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -80,7 +80,7 @@ class Clone(EmbroideryElement):
return elements
def to_stitch_groups(self, last_stitch_group=None) -> List[StitchGroup]:
if self.clone:
if not self.clone:
return []
with self.clone_elements() as elements: