Merge pull request #1129 from RumovZ/cloze-bug

Fix index out of range error when changing cloze model
This commit is contained in:
Damien Elmes 2021-04-15 09:40:16 +10:00 committed by GitHub
commit 223aa64626
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,13 +48,13 @@ class ChangeModel(QDialog):
self.form.setupUi(self)
disable_help_button(self)
self.setWindowModality(Qt.WindowModal)
# ugh - these are set dynamically by rebuildTemplateMap()
self.tcombos: List[QComboBox] = []
self.fcombos: List[QComboBox] = []
self.setup()
restoreGeom(self, "changeModel")
gui_hooks.state_did_reset.append(self.onReset)
gui_hooks.current_note_type_did_change.append(self.on_note_type_change)
# ugh - these are set dynamically by rebuildTemplateMap()
self.tcombos: List[QComboBox] = []
self.fcombos: List[QComboBox] = []
self.exec_()
def on_note_type_change(self, notetype: NotetypeDict) -> None: