Fix deck change after toggling sticky fields (#1415)

This commit is contained in:
Abdo 2021-10-09 03:26:10 +03:00 committed by GitHub
parent c64bac57a6
commit ebe7125e81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -403,7 +403,9 @@ $editorToolbar.then(({{ toolbar }}) => toolbar.appendGroup({{
result.append(fld["sticky"])
update_notetype_legacy(parent=self.mw, notetype=model).run_in_background()
update_notetype_legacy(parent=self.mw, notetype=model).run_in_background(
initiator=self
)
return result
@ -416,7 +418,9 @@ $editorToolbar.then(({{ toolbar }}) => toolbar.appendGroup({{
new_state = not fld["sticky"]
fld["sticky"] = new_state
update_notetype_legacy(parent=self.mw, notetype=model).run_in_background()
update_notetype_legacy(parent=self.mw, notetype=model).run_in_background(
initiator=self
)
return new_state