From 14f2599ba10f473f9f9c946f33676602de368bf4 Mon Sep 17 00:00:00 2001 From: Mizaki Date: Tue, 21 May 2024 23:48:46 +0100 Subject: [PATCH] fix auto tag window --- comictaggerlib/autotagmatchwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comictaggerlib/autotagmatchwindow.py b/comictaggerlib/autotagmatchwindow.py index dfcdca1..062ffb6 100644 --- a/comictaggerlib/autotagmatchwindow.py +++ b/comictaggerlib/autotagmatchwindow.py @@ -229,7 +229,7 @@ class AutoTagMatchWindow(QtWidgets.QDialog): def save_match(self) -> None: match = self.current_match() ca = ComicArchive(self.current_match_set.original_path) - md, error = self.parent().overlay_ca_read_style(self.load_data_styles, ca) + md, error = self.parent().overlay_ca_read_style(self._styles, ca) if error is not None: logger.error("Failed to load metadata for %s: %s", ca.path, error) QtWidgets.QApplication.restoreOverrideCursor()