From 93afd44133dd012cc51c5180344b5e5c1a082b4c Mon Sep 17 00:00:00 2001 From: Arthur Milchior Date: Wed, 18 Sep 2019 16:58:29 +0200 Subject: [PATCH] when sorting by easiness, put new card separately --- anki/find.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/find.py b/anki/find.py index c895b7fac..4cccb6159 100644 --- a/anki/find.py +++ b/anki/find.py @@ -228,7 +228,7 @@ select distinct(n.id) from cards c, notes n where c.nid=n.id and """+preds elif type == "cardDue": sort = "c.type, c.due" elif type == "cardEase": - sort = "c.factor" + sort = "c.type == 0, c.factor" elif type == "cardLapses": sort = "c.lapses" elif type == "cardIvl":