mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 16:02:23 -04:00
allow decreasing daily limits in custom study
This commit is contained in:
parent
b5d4e78b94
commit
59b9c361ac
1 changed files with 2 additions and 0 deletions
|
@ -62,6 +62,7 @@ class CustomStudy(QDialog):
|
|||
tit = _("New cards in deck over today limit: %s") % plus(newExceeding)
|
||||
pre = _("Increase today's new card limit by")
|
||||
sval = min(new, self.deck.get('extendNew', 10))
|
||||
smin = -DYN_MAX_SIZE
|
||||
smax = newExceeding
|
||||
elif idx == RADIO_REV:
|
||||
rev = self.mw.col.sched.totalRevForCurrentDeck()
|
||||
|
@ -71,6 +72,7 @@ class CustomStudy(QDialog):
|
|||
tit = _("Reviews due in deck over today limit: %s") % plus(revExceeding)
|
||||
pre = _("Increase today's review limit by")
|
||||
sval = min(rev, self.deck.get('extendRev', 10))
|
||||
smin = -DYN_MAX_SIZE
|
||||
smax = revExceeding
|
||||
elif idx == RADIO_FORGOT:
|
||||
pre = _("Review cards forgotten in last")
|
||||
|
|
Loading…
Reference in a new issue