mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
halve the leech threshold, as it only applies to rev->relearn failures now
This commit is contained in:
parent
751cb7df67
commit
d34465c1e6
2 changed files with 1 additions and 3 deletions
|
@ -39,7 +39,7 @@ defaultConf = {
|
||||||
'mult': 0,
|
'mult': 0,
|
||||||
'minInt': 1,
|
'minInt': 1,
|
||||||
'relearn': True,
|
'relearn': True,
|
||||||
'leechFails': 16,
|
'leechFails': 8,
|
||||||
# type 0=suspend, 1=tagonly
|
# type 0=suspend, 1=tagonly
|
||||||
'leechAction': 0,
|
'leechAction': 0,
|
||||||
},
|
},
|
||||||
|
|
|
@ -227,8 +227,6 @@ select 1 from cards where gid = ? and
|
||||||
# New cards
|
# New cards
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
# FIXME: need to keep track of reps for timebox and new card introduction
|
|
||||||
|
|
||||||
def _resetNewCount(self):
|
def _resetNewCount(self):
|
||||||
self._updateStatsDay("new")
|
self._updateStatsDay("new")
|
||||||
l = self.deck.groups.top()
|
l = self.deck.groups.top()
|
||||||
|
|
Loading…
Reference in a new issue