From e96472b2b7ecee7f052e4019e03943dbcf7c17b5 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 29 Jan 2010 17:44:07 +0900 Subject: [PATCH] default to 2 for new cards --- ankiqt/ui/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ankiqt/ui/main.py b/ankiqt/ui/main.py index c826ab8c7..134804d3f 100755 --- a/ankiqt/ui/main.py +++ b/ankiqt/ui/main.py @@ -642,7 +642,7 @@ new: self.mainWin.easeButton4.setText(_("Easy")) def defaultEaseButton(self): - if self.currentCard.reps and not self.currentCard.successive: + if not self.currentCard.successive: return 2 else: return 3