mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#2985 Make time step index in well log extraction curve auto name start at 1.
This commit is contained in:
parent
ee7bd79fcb
commit
76c24a5c8d
@ -273,7 +273,7 @@ QString Rim3dWellLogExtractionCurve::createCurveAutoName() const
|
||||
|
||||
if (m_nameConfig->addTimeStep())
|
||||
{
|
||||
generatedCurveName.push_back(QString("[%1/%2]").arg(m_timeStep()).arg(maxTimeStep));
|
||||
generatedCurveName.push_back(QString("[%1/%2]").arg(m_timeStep() + 1).arg(maxTimeStep));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -737,7 +737,7 @@ QString RimWellLogExtractionCurve::createCurveAutoName()
|
||||
|
||||
if (m_addTimestepToCurveName)
|
||||
{
|
||||
generatedCurveName.push_back(QString("[%1/%2]").arg(m_timeStep()).arg(maxTimeStep));
|
||||
generatedCurveName.push_back(QString("[%1/%2]").arg(m_timeStep() + 1).arg(maxTimeStep));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user