mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 06:07:11 -05:00
place no lower limit on number of failed cards
This commit is contained in:
parent
1fbad4235a
commit
9212d8053f
1 changed files with 1 additions and 1 deletions
|
|
@ -235,7 +235,7 @@ class DeckProperties(QDialog):
|
||||||
v = float(self.dialog.delay2.text())
|
v = float(self.dialog.delay2.text())
|
||||||
self.updateField(self.d, 'delay2', v)
|
self.updateField(self.d, 'delay2', v)
|
||||||
v = int(self.dialog.failedCardMax.text())
|
v = int(self.dialog.failedCardMax.text())
|
||||||
self.updateField(self.d, 'failedCardMax', max(v, 5))
|
self.updateField(self.d, 'failedCardMax', v)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
pass
|
pass
|
||||||
# hour shift
|
# hour shift
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue