From 61d7c0b5d9a2d4cde5f8e39818a0b765632a3320 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":