From 4dad1370d937012b854529f6c41208b4aba85b6b Mon Sep 17 00:00:00 2001 From: Phillip Grimsrud Date: Thu, 28 Mar 2019 00:37:32 -0600 Subject: [PATCH] Add an option to always show the live delta --- UI/Components/GraphComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Components/GraphComponent.cs b/UI/Components/GraphComponent.cs index 18b6f05..3aa5b8e 100644 --- a/UI/Components/GraphComponent.cs +++ b/UI/Components/GraphComponent.cs @@ -511,7 +511,7 @@ private void CheckLiveSegmentDelta(LiveSplitState state, string comparison) { if (state.CurrentPhase == TimerPhase.Running || state.CurrentPhase == TimerPhase.Paused) { - var bestSeg = LiveSplitStateHelper.CheckLiveDelta(state, true, comparison, state.CurrentTimingMethod); + var bestSeg = LiveSplitStateHelper.CheckLiveDelta(state, true, comparison, state.CurrentTimingMethod, false); var curSplit = state.Run[state.CurrentSplitIndex].Comparisons[comparison][state.CurrentTimingMethod]; var curTime = state.CurrentTime[state.CurrentTimingMethod]; if (bestSeg == null && curSplit != null && curTime - curSplit > MinDelta)