Fix overwrite of value thresholds

This commit is contained in:
Magne Sjaastad
2025-02-19 09:18:40 +01:00
parent bbd79cca6a
commit 3f0a764abe

View File

@@ -478,9 +478,6 @@ std::pair<double, double> RimContourMapProjection::minmaxValuesAllTimeSteps()
const auto [minVal, maxVal] = computeMinMaxValuesAllTimeSteps();
m_minResultAllTimeSteps = minVal;
m_maxResultAllTimeSteps = maxVal;
m_lowerThreshold = minVal;
m_upperThreshold = maxVal;
}
return std::pair<double, double>( m_minResultAllTimeSteps, m_maxResultAllTimeSteps );