mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
fix x axis on ivl graph when showing deck life
This commit is contained in:
parent
439821b3c9
commit
96b0087262
1 changed files with 1 additions and 1 deletions
|
@ -401,7 +401,7 @@ group by day order by day)""" % lim,
|
|||
elif self.type == 1:
|
||||
ivlmax = 52
|
||||
else:
|
||||
ivlmax = max(5, ivls[-1][0] / 31)
|
||||
ivlmax = max(5, ivls[-1][0])
|
||||
txt = self._title(_("Intervals"),
|
||||
_("Delays until reviews are shown again."))
|
||||
txt += self._graph(id="ivl", ylabel2=_("Percentage"), data=[
|
||||
|
|
Loading…
Reference in a new issue