Skip to content

Commit

Permalink
Merge pull request #204 from aplaice/qt6_compat_hopefully_final
Browse files Browse the repository at this point in the history
Fix hopefully final occurrence of Qt6-incompatibility
  • Loading branch information
aplaice authored Oct 30, 2023
2 parents 30a82ec + 95a88d4 commit bf9ae61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crowd_anki/importer/import_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def setup_misc(self):
# set as default from config settings

if self.userConfig.import_notes_ignore_deck_movement:
self.form.cb_ignore_move_cards.setCheckState(Qt.Checked)
self.form.cb_ignore_move_cards.setCheckState(Qt.CheckState.Checked)

def setup_deck_part_checkboxes(self):
def set_checked_and_text(checkbox, text, count, checked: bool = True):
Expand Down

0 comments on commit bf9ae61

Please sign in to comment.