From 1ff7bdf1a7d32d2f16aa5e3d0c6c19fd2f470e59 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Sat, 3 Aug 2019 01:10:58 +0300 Subject: [PATCH] Increase resolution of warp time graph --- gui/builtinGraphs/fitWarpTime/getter.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gui/builtinGraphs/fitWarpTime/getter.py b/gui/builtinGraphs/fitWarpTime/getter.py index 049c06e01..2b5a71355 100644 --- a/gui/builtinGraphs/fitWarpTime/getter.py +++ b/gui/builtinGraphs/fitWarpTime/getter.py @@ -28,6 +28,9 @@ AU_METERS = 149597870700 class Distance2TimeGetter(SmoothPointGetter): + def __init__(self, graph): + super().__init__(graph, baseResolution=500, extraDepth=0) + def _getCommonData(self, miscParams, fit, tgt): return { 'subwarpSpeed': self.graph._subspeedCache.getSubwarpSpeed(fit),