From 623dff8df0256dad44eff2c67fdc100d303b20e2 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 5 May 2012 23:52:47 +0900 Subject: [PATCH] allow for more cards in a cram deck --- anki/sched.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anki/sched.py b/anki/sched.py index 313e6f858..dc1d215d0 100644 --- a/anki/sched.py +++ b/anki/sched.py @@ -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"