#6007 Reload facies properties when project is reopened.

This commit is contained in:
Kristian Bendiksen
2020-06-03 12:48:57 +02:00
committed by Magne Sjaastad
parent 38ec6e5069
commit 466827e7d0
9 changed files with 193 additions and 74 deletions

View File

@@ -472,3 +472,14 @@ void RimFractureModel::setFaciesProperties( RimFaciesProperties* faciesPropertie
{
m_faciesProperties = faciesProperties;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimFractureModel::loadDataAndUpdate()
{
if ( m_faciesProperties )
{
m_faciesProperties->loadDataAndUpdate();
}
}

View File

@@ -71,6 +71,8 @@ public:
RimWellPath* wellPath() const;
void loadDataAndUpdate();
RimModeledWellPath* thicknessDirectionWellPath() const;
void setThicknessDirectionWellPath( RimModeledWellPath* thicknessDirectionWellPath );
void setFaciesProperties( RimFaciesProperties* faciesProperties );