Skip to content

Commit

Permalink
Fix bug whereby anchors were zapped
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens committed Sep 24, 2024
1 parent bb9a82f commit a7cf362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/ufomerge/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ def merged_dotted_circle_anchors(self):
ds1 = self.find_dotted_circle(self.ufo1)
if ds1 is None or ds2 is None:
return []
anchors = ds1.anchors
anchors = list(ds1.anchors) # The accessor is weird
names = [anchor.name for anchor in anchors]
for anchor in ds2.anchors:
if anchor.name not in names:
Expand Down

0 comments on commit a7cf362

Please sign in to comment.