Skip to content

Commit

Permalink
Use time steps from source summary curve
Browse files Browse the repository at this point in the history
  • Loading branch information
magnesj committed Oct 12, 2023
1 parent 3dd406e commit 9537d8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ void RimSummaryRegressionAnalysisCurve::appendTimeSteps( std::vector<time_t>& de
//--------------------------------------------------------------------------------------------------
std::pair<time_t, time_t> RimSummaryRegressionAnalysisCurve::fullTimeStepRange() const
{
auto timeSteps = RimSummaryCurve::timeStepsY();
auto timeSteps = m_sourceTimeStepsY;
if ( !timeSteps.empty() )
{
return std::make_pair( *timeSteps.begin(), *timeSteps.rbegin() );
Expand Down

0 comments on commit 9537d8a

Please sign in to comment.