mirror of
https://github.com/ankitects/anki.git
synced 2025-11-12 07:37:11 -05:00
allow for more cards in a cram deck
This commit is contained in:
parent
58257cb5c4
commit
623dff8df0
1 changed files with 2 additions and 2 deletions
|
|
@ -803,8 +803,8 @@ order by c.mod""" % ((self.dayCutoff-86400)*1000)
|
|||
data = []
|
||||
t = intTime(); u = self.col.usn()
|
||||
for c, id in enumerate(ids):
|
||||
# start at -1000 so that reviews are all due
|
||||
data.append((did, -1000+c, t, u, id))
|
||||
# start at -100000 so that reviews are all due
|
||||
data.append((did, -100000+c, t, u, id))
|
||||
if deck['cramRev']:
|
||||
# everything in the new queue
|
||||
queue = "0"
|
||||
|
|
|
|||
Loading…
Reference in a new issue