mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 07:52:24 -04:00
if the deck is not randomized, show actual due date of new cards
This commit is contained in:
parent
7916d336e6
commit
ad80613d06
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ facts.id = cards.factId), firstAnswered from cards where id = :id""",
|
|||
reps = self.cards[index.row()][CARD_REPS]
|
||||
secs = d - time.time()
|
||||
if secs <= 0:
|
||||
if not reps:
|
||||
if not reps and self.deck.newCardOrder == 0:
|
||||
return _("(new card)")
|
||||
else:
|
||||
return _("%s ago") % fmtTimeSpan(abs(secs), pad=0)
|
||||
|
|
Loading…
Reference in a new issue