mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
QUEUE_TYPE_PREVIEW
This commit is contained in:
parent
45bf763238
commit
7b7b71c0e1
2 changed files with 1 additions and 1 deletions
|
@ -21,6 +21,7 @@ QUEUE_TYPE_SUSPENDED = -1
|
||||||
QUEUE_TYPE_NEW = 0
|
QUEUE_TYPE_NEW = 0
|
||||||
QUEUE_TYPE_LRN = 1
|
QUEUE_TYPE_LRN = 1
|
||||||
QUEUE_TYPE_REV = 2
|
QUEUE_TYPE_REV = 2
|
||||||
|
QUEUE_TYPE_PREVIEW = 4
|
||||||
|
|
||||||
# Card types
|
# Card types
|
||||||
CARD_TYPE_NEW = 0
|
CARD_TYPE_NEW = 0
|
||||||
|
|
|
@ -25,7 +25,6 @@ from anki.utils import fmtTimeSpan, ids2str, intTime
|
||||||
CARD_TYPE_RELEARNING = 3
|
CARD_TYPE_RELEARNING = 3
|
||||||
# queue types: 0=new, 1=(re)lrn, 2=rev, 3=day (re)lrn,
|
# queue types: 0=new, 1=(re)lrn, 2=rev, 3=day (re)lrn,
|
||||||
# 4=preview, -1=suspended, -2=sibling buried, -3=manually buried
|
# 4=preview, -1=suspended, -2=sibling buried, -3=manually buried
|
||||||
QUEUE_TYPE_PREVIEW = 4
|
|
||||||
QUEUE_TYPE_DAY_LEARN_RELEARN = 3
|
QUEUE_TYPE_DAY_LEARN_RELEARN = 3
|
||||||
|
|
||||||
# revlog types: 0=lrn, 1=rev, 2=relrn, 3=early review
|
# revlog types: 0=lrn, 1=rev, 2=relrn, 3=early review
|
||||||
|
|
Loading…
Reference in a new issue