As display of wells is dependent on timestep, do not reset timestep when no results are present.

This fix was reverted unintentionally.
p4#: 20423
This commit is contained in:
Magne Sjaastad 2013-02-07 15:49:36 +01:00
parent 09544f082b
commit defc91ba08

View File

@ -276,11 +276,6 @@ void RimReservoirView::clampCurrentTimestep()
}
if (m_currentTimeStep < 0 ) m_currentTimeStep = 0;
if (!this->cellResult()->hasResult() || cellResult->hasStaticResult())
{
m_currentTimeStep = 0;
}
}
//--------------------------------------------------------------------------------------------------