#5129 Fix depth ranges when curve units don't match display units

This commit is contained in:
Gaute Lindkvist
2019-11-29 10:02:34 +01:00
parent d736419fd4
commit d05328e184
6 changed files with 28 additions and 45 deletions

View File

@@ -70,12 +70,9 @@ protected:
void updateZoomInParentPlot() override;
void updateLegendsInPlot() override;
void setOverrideCurveDataXRange( double minimumValue, double maximumValue );
void calculateCurveDataXRange();
private:
void calculateCurveDataRanges();
private:
cvf::ref<RigWellLogCurveData> m_curveData;
std::pair<double, double> m_curveDataXRange;
std::map<RiaDefines::DepthTypeEnum, std::pair<double, double>> m_curveDataDepthRange;
cvf::ref<RigWellLogCurveData> m_curveData;
std::pair<double, double> m_curveDataXRange;
};