From bada694fd4731edb33c773d7b9e73f1ff7fe4f54 Mon Sep 17 00:00:00 2001 From: Mizaki Date: Sat, 11 May 2024 16:44:44 +0100 Subject: [PATCH] Rebase corrections --- comictaggerlib/autotagmatchwindow.py | 2 +- comictaggerlib/settingswindow.py | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/comictaggerlib/autotagmatchwindow.py b/comictaggerlib/autotagmatchwindow.py index a0cf9f6..8c92921 100644 --- a/comictaggerlib/autotagmatchwindow.py +++ b/comictaggerlib/autotagmatchwindow.py @@ -81,7 +81,7 @@ class AutoTagMatchWindow(QtWidgets.QDialog): self.buttonBox.button(QtWidgets.QDialogButtonBox.StandardButton.Ok).setText("Accept and Write Tags") self.match_set_list = match_set_list - self._styles = styles + self._styles = load_styles self.fetch_func = fetch_func self.current_match_set_idx = 0 diff --git a/comictaggerlib/settingswindow.py b/comictaggerlib/settingswindow.py index 0169ad3..441738f 100644 --- a/comictaggerlib/settingswindow.py +++ b/comictaggerlib/settingswindow.py @@ -529,13 +529,6 @@ class SettingsWindow(QtWidgets.QDialog): self.config[0].General__check_for_new_version = self.cbxCheckForNewVersion.isChecked() - # Update metadata style names if required - if self.cbxShortMetadataNames.isChecked() != self.config[0].General__use_short_metadata_names: - self.config[0].General__use_short_metadata_names = self.cbxShortMetadataNames.isChecked() - self.parent().populate_style_names() - self.parent().adjust_load_style_combo() - self.parent().adjust_save_style_combo() - self.config[0].Issue_Identifier__series_match_identify_thresh = self.sbNameMatchIdentifyThresh.value() self.config[0].Issue_Identifier__series_match_search_thresh = self.sbNameMatchSearchThresh.value() self.config[0].Issue_Identifier__publisher_filter = utils.split(self.tePublisherFilter.toPlainText(), "\n")