From 72ed9ceb02476575a5ca2ff62d2ae73ed8f9cf0f Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 26 Mar 2011 11:58:40 +0900 Subject: [PATCH] but don't mark all ease 1s as learning --- anki/storage.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/anki/storage.py b/anki/storage.py index 4ec4b7715..53d027de9 100644 --- a/anki/storage.py +++ b/anki/storage.py @@ -341,6 +341,9 @@ cast(nextFactor*1000 as int), cast(min(thinkingTime, 60)*1000 as int), if row[3] == 1: # initial rep; set type=lrn row[8] = 0 + elif row[2] == 1 and row[5] >= 3: + # lapsed card + row[8] = 1 elif row[4] < 3: # low interval; set type=relrn row[8] = 2