mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
update tags when importing
This commit is contained in:
parent
780010ad68
commit
ebaa37fe55
1 changed files with 3 additions and 1 deletions
|
@ -47,11 +47,13 @@ class Importer(object):
|
||||||
|
|
||||||
def doImport(self):
|
def doImport(self):
|
||||||
"Import."
|
"Import."
|
||||||
self.deck.startProgress(6)
|
self.deck.startProgress(7)
|
||||||
self.deck.updateProgress(_("Importing..."))
|
self.deck.updateProgress(_("Importing..."))
|
||||||
c = self.foreignCards()
|
c = self.foreignCards()
|
||||||
self.importCards(c)
|
self.importCards(c)
|
||||||
self.deck.updateProgress()
|
self.deck.updateProgress()
|
||||||
|
self.deck.updateCardTags()
|
||||||
|
self.deck.updateProgress()
|
||||||
self.deck.updateAllPriorities()
|
self.deck.updateAllPriorities()
|
||||||
self.deck.finishProgress()
|
self.deck.finishProgress()
|
||||||
if c:
|
if c:
|
||||||
|
|
Loading…
Reference in a new issue