mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Remove Python TagEdit from Editor view
This commit is contained in:
parent
c48b861596
commit
5505925e64
1 changed files with 2 additions and 7 deletions
|
@ -112,7 +112,6 @@ class Editor:
|
|||
self.setupOuter()
|
||||
self.setupWeb()
|
||||
self.setupShortcuts()
|
||||
self.setupTags()
|
||||
gui_hooks.editor_did_init(self)
|
||||
|
||||
# Initial setup
|
||||
|
@ -454,10 +453,8 @@ $editorToolbar.then(({{ toolbar }}) => toolbar.appendGroup({{
|
|||
self.currentField = None
|
||||
if self.note:
|
||||
self.loadNote(focusTo=focusTo)
|
||||
else:
|
||||
self.hideCompleters()
|
||||
if hide:
|
||||
self.widget.hide()
|
||||
elif hide:
|
||||
self.widget.hide()
|
||||
|
||||
def loadNoteKeepingFocus(self) -> None:
|
||||
self.loadNote(self.currentField)
|
||||
|
@ -471,7 +468,6 @@ $editorToolbar.then(({{ toolbar }}) => toolbar.appendGroup({{
|
|||
for fld, val in self.note.items()
|
||||
]
|
||||
self.widget.show()
|
||||
self.updateTags()
|
||||
|
||||
note_fields_status = self.note.fields_check()
|
||||
|
||||
|
@ -525,7 +521,6 @@ $editorToolbar.then(({{ toolbar }}) => toolbar.appendGroup({{
|
|||
# calling code may not expect the callback to fire immediately
|
||||
self.mw.progress.timer(10, callback, False)
|
||||
return
|
||||
self.blur_tags_if_focused()
|
||||
self.web.evalWithCallback("saveNow(%d)" % keepFocus, lambda res: callback())
|
||||
|
||||
saveNow = call_after_note_saved
|
||||
|
|
Loading…
Reference in a new issue