mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
disable broken lastCard=currentCard check for now
This commit is contained in:
parent
d0fa8ce9a6
commit
3eca37d75c
1 changed files with 5 additions and 4 deletions
|
@ -375,10 +375,11 @@ Please do not file a bug report with Anki.<br>""")
|
|||
if self.currentCard:
|
||||
if self.lastCard:
|
||||
if self.lastCard.id == self.currentCard.id:
|
||||
if self.currentCard.combinedDue > time.time():
|
||||
# if the same card is being shown and it's not
|
||||
# due yet, give up
|
||||
return self.moveToState("deckFinished")
|
||||
pass
|
||||
# if self.currentCard.combinedDue > time.time():
|
||||
# # if the same card is being shown and it's not
|
||||
# # due yet, give up
|
||||
# return self.moveToState("deckFinished")
|
||||
self.enableCardMenuItems()
|
||||
return self.moveToState("showQuestion")
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue