mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
default to new cards in order
This commit is contained in:
parent
b896c16089
commit
3933e14c1b
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ decksTable = Table(
|
|||
Column('lowPriority', UnicodeText, nullable=False, default=u"LowPriority"),
|
||||
Column('suspended', UnicodeText, nullable=False, default=u"Suspended"),
|
||||
# 0 is random, 1 is by input date
|
||||
Column('newCardOrder', Integer, nullable=False, default=0),
|
||||
Column('newCardOrder', Integer, nullable=False, default=1),
|
||||
# when to show new cards
|
||||
Column('newCardSpacing', Integer, nullable=False, default=NEW_CARDS_DISTRIBUTE),
|
||||
# limit the number of failed cards in play
|
||||
|
|
Loading…
Reference in a new issue