#2141 Fracture Legend : Update model when ellipse conductivity changes

This commit is contained in:
Magne Sjaastad 2018-01-19 09:49:26 +01:00
parent 04a91b92f4
commit 0674eaefbf

View File

@ -80,7 +80,10 @@ void RimEllipseFractureTemplate::fieldChangedByUi(const caf::PdmFieldHandle* cha
{
RimFractureTemplate::fieldChangedByUi(changedField, oldValue, newValue);
if (changedField == &m_halfLength || changedField == &m_height)
if ( changedField == &m_halfLength
|| changedField == &m_height
|| changedField == &m_width
|| changedField == &m_permeability)
{
//Changes to one of these parameters should change all fractures with this fracture template attached.
RimProject* proj;