mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 15:02:21 -04:00
show correct due time of day lrn cards
This commit is contained in:
parent
e1084b15b0
commit
88e7209a12
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ class DataModel(QAbstractTableModel):
|
|||
return str(c.due)
|
||||
elif c.queue == 1:
|
||||
date = c.due
|
||||
elif c.queue == 2:
|
||||
elif c.queue in (2,3):
|
||||
date = time.time() + ((c.due - self.col.sched.today)*86400)
|
||||
else:
|
||||
return _("(susp.)")
|
||||
|
|
Loading…
Reference in a new issue