Skip to content

Commit e55dd50

Browse files
committed
Update main.py
1 parent de2bf54 commit e55dd50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/lib/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ def removeDupesButtonCallback(self, sender):
736736
for g in f:
737737
uniques = []
738738
for a in g.anchors:
739-
if a.name not in names:
739+
if a.name.lstrip('_') not in names:
740740
continue
741741
if a.name not in uniques:
742742
uniques.append(a.name)

0 commit comments

Comments
 (0)