mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 16:02:23 -04:00
fix 1000 cap in overview screen
This commit is contained in:
parent
b97f913ba1
commit
640bcfa7d5
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue