fix 1000 cap in overview screen

This commit is contained in:
Damien Elmes 2014-02-06 05:33:58 +09:00
parent b97f913ba1
commit 640bcfa7d5

View file

@ -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: