From 640bcfa7d54d39500d2c08f1fb78c4531d0dfc38 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 6 Feb 2014 05:33:58 +0900 Subject: [PATCH] fix 1000 cap in overview screen --- aqt/overview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/overview.py b/aqt/overview.py index 64f631874..2da65b55b 100644 --- a/aqt/overview.py +++ b/aqt/overview.py @@ -123,7 +123,7 @@ to their original deck.""") counts = list(self.mw.col.sched.counts()) finished = not sum(counts) for n in range(len(counts)): - if counts[n] == 1000: + if counts[n] >= 1000: counts[n] = "1000+" but = self.mw.button if finished: