mirror of
https://github.com/OPM/ResInsight.git
synced 2024-12-29 10:21:54 -06:00
Add geom part id to name/title of WellLogExtraction curve
This commit is contained in:
parent
ee5f89c343
commit
66db9d73a9
@ -1166,6 +1166,12 @@ QString RimWellLogExtractionCurve::createCurveAutoName()
|
||||
if ( m_addCaseNameToCurveName && m_case() )
|
||||
{
|
||||
generatedCurveName.push_back( m_case->caseUserDescription() );
|
||||
|
||||
// Add part to curve name for geo mech cases with more than 1 part
|
||||
if ( geomCase && geomCase->geoMechData() && geomCase->geoMechData()->femParts() && geomCase->geoMechData()->femParts()->partCount() > 1 )
|
||||
{
|
||||
generatedCurveName.push_back( QString( "Part %1" ).arg( m_geomPartId ) );
|
||||
}
|
||||
}
|
||||
|
||||
if ( m_addPropertyToCurveName && !wellLogChannelUiName().isEmpty() )
|
||||
|
Loading…
Reference in New Issue
Block a user