mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
should be checking cardQueue, not cardType in status
This commit is contained in:
parent
9432b94863
commit
80dcf3848c
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ class StatusView(object):
|
|||
if not self.main.currentCard:
|
||||
remStr += "%(failed1)s" + s + "%(rev1)s" + s + "%(new1)s"
|
||||
else:
|
||||
t = self.main.deck.cardType(self.main.currentCard)
|
||||
t = self.main.deck.cardQueue(self.main.currentCard)
|
||||
if t == 0:
|
||||
remStr += ("<u>%(failed1)s</u>" + s +
|
||||
"%(rev1)s" + s + "%(new1)s")
|
||||
|
|
Loading…
Reference in a new issue