mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 15:02:21 -04:00
but don't mark all ease 1s as learning
This commit is contained in:
parent
139f1afc41
commit
72ed9ceb02
1 changed files with 3 additions and 0 deletions
|
@ -341,6 +341,9 @@ cast(nextFactor*1000 as int), cast(min(thinkingTime, 60)*1000 as int),
|
||||||
if row[3] == 1:
|
if row[3] == 1:
|
||||||
# initial rep; set type=lrn
|
# initial rep; set type=lrn
|
||||||
row[8] = 0
|
row[8] = 0
|
||||||
|
elif row[2] == 1 and row[5] >= 3:
|
||||||
|
# lapsed card
|
||||||
|
row[8] = 1
|
||||||
elif row[4] < 3:
|
elif row[4] < 3:
|
||||||
# low interval; set type=relrn
|
# low interval; set type=relrn
|
||||||
row[8] = 2
|
row[8] = 2
|
||||||
|
|
Loading…
Reference in a new issue