#8868 Well Log Plot: Appearance update not working

This commit is contained in:
Magne Sjaastad
2022-05-28 09:53:22 +02:00
parent 534e74dd31
commit 787d3ae379
2 changed files with 15 additions and 0 deletions

View File

@@ -1233,6 +1233,18 @@ bool RimWellLogTrack::isEmptyVisibleXRange() const
1.0e-6 * std::max( 1.0, std::max( m_visiblePropertyValueRangeMax(), m_visiblePropertyValueRangeMin() ) );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimWellLogTrack::onChildrenUpdated( caf::PdmChildArrayFieldHandle* childArray,
std::vector<caf::PdmObjectHandle*>& updatedObjects )
{
if ( childArray == &m_curves )
{
loadDataAndUpdate();
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------