Extend allowable range a little so that first reload of triglavians is included

This commit is contained in:
DarkPhoenix
2019-05-21 21:11:09 +03:00
parent ed7494b3a4
commit 24909f0523
2 changed files with 2 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ class FitDmgVsTimeGraph(Graph):
return roundToPrec(cache[closestTime], 6)
def _getXLimits(self, fit, extraData):
return 0, 1000
return 0, 2500
def __generateCache(self, fit, maxTime):
cache = self._cache[fit.ID] = {}

View File

@@ -81,7 +81,7 @@ class FitDpsVsTimeGraph(Graph):
return roundToPrec(cache[closestTime], 6)
def _getXLimits(self, fit, extraData):
return 0, 1000
return 0, 2500
def __generateCache(self, fit, maxTime):
cache = []