mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
don't show interval if card is new
This commit is contained in:
parent
b7bd648762
commit
3eb9212422
1 changed files with 2 additions and 0 deletions
|
@ -224,6 +224,8 @@ class DeckModel(QAbstractTableModel):
|
||||||
elif type == "cardLapses":
|
elif type == "cardLapses":
|
||||||
return str(c.lapses)
|
return str(c.lapses)
|
||||||
elif type == "cardIvl":
|
elif type == "cardIvl":
|
||||||
|
if c.type == 0:
|
||||||
|
return _("(new)")
|
||||||
return fmtTimeSpan(c.ivl*86400)
|
return fmtTimeSpan(c.ivl*86400)
|
||||||
elif type == "cardEase":
|
elif type == "cardEase":
|
||||||
if c.type == 0:
|
if c.type == 0:
|
||||||
|
|
Loading…
Reference in a new issue