From 59114d96243f56f56beb8799146392a0c892da28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20St=C3=B8ren?= Date: Fri, 29 Nov 2019 16:00:38 +0100 Subject: [PATCH] #5145 Fix strange zigzag lines in summary curves --- ApplicationCode/UserInterface/RiuQwtPlotCurve.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationCode/UserInterface/RiuQwtPlotCurve.cpp b/ApplicationCode/UserInterface/RiuQwtPlotCurve.cpp index 6cb0a6d6bf..a42f00cea5 100644 --- a/ApplicationCode/UserInterface/RiuQwtPlotCurve.cpp +++ b/ApplicationCode/UserInterface/RiuQwtPlotCurve.cpp @@ -354,7 +354,7 @@ void RiuQwtPlotCurve::computeValidIntervalsAndSetCurveData( const std::vector( validXValues.size() ) ); - setLineSegmentStartStopIndices( intervalsOfValidValues ); + setLineSegmentStartStopIndices( RiaCurveDataTools::computePolyLineStartStopIndices( intervalsOfValidValues ) ); } //--------------------------------------------------------------------------------------------------