#3443 MSW: Visualise perforations, fishbones, packers and fractures in well log plots

This commit is contained in:
Gaute Lindkvist
2018-10-03 15:57:09 +02:00
parent 71a1bd98ab
commit fbc49e2b02
19 changed files with 862 additions and 350 deletions

View File

@@ -85,6 +85,8 @@ void RimWellPathAttributeCollection::insertAttribute(RimWellPathAttribute* inser
m_attributes.insert(index, attribute);
else
m_attributes.push_back(attribute);
this->updateAllReferringTracks();
}
//--------------------------------------------------------------------------------------------------
@@ -94,6 +96,8 @@ void RimWellPathAttributeCollection::deleteAttribute(RimWellPathAttribute* attri
{
m_attributes.removeChildObject(attributeToDelete);
delete attributeToDelete;
this->updateAllReferringTracks();
}
//--------------------------------------------------------------------------------------------------
@@ -123,6 +127,7 @@ void RimWellPathAttributeCollection::defineEditorAttribute(const caf::PdmFieldHa
if (tvAttribute)
{
tvAttribute->autoResizeColumnsToFillContainer = true;
tvAttribute->minimumHeight = 300;
}
}
}