Fix remove tags menu option Fixes #650

This commit is contained in:
Timmy Welch 2024-06-01 00:08:56 -07:00
parent 979a54e2b8
commit 5d7e348a0e

View File

@ -344,7 +344,7 @@ class TaggerWindow(QtWidgets.QMainWindow):
remove_raw_tags[style.short_name] = self.menuRemove.addAction(f"Remove Raw {style.name()} Tags")
remove_raw_tags[style.short_name].setStatusTip(f"Remove {style.name()} tags from comic archive")
remove_raw_tags[style.short_name].triggered.connect(functools.partial(self.remove_tags, style.short_name))
remove_raw_tags[style.short_name].triggered.connect(functools.partial(self.remove_tags, [style.short_name]))
return view_raw_tags, remove_raw_tags