mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-21 22:13:25 -06:00
#5729 Fix updates when changing analysis plot filters
This commit is contained in:
parent
342f4a8ac6
commit
3cb40ca50d
@ -255,6 +255,14 @@ void RimPlotDataFilterItem::fieldChangedByUi( const caf::PdmFieldHandle* changed
|
||||
this->updateMaxMinAndDefaultValues( false );
|
||||
parentPlot->onFiltersChanged();
|
||||
}
|
||||
else if ( changedField == &m_isActive )
|
||||
{
|
||||
parentPlot->onFiltersChanged();
|
||||
}
|
||||
else if ( changedField == &m_min || changedField == &m_max )
|
||||
{
|
||||
parentPlot->onFiltersChanged();
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@ -399,8 +407,9 @@ void RimPlotDataFilterItem::defineEditorAttribute( const caf::PdmFieldHandle* fi
|
||||
return;
|
||||
}
|
||||
|
||||
myAttr->m_minimum = m_lowerLimit;
|
||||
myAttr->m_maximum = m_upperLimit;
|
||||
myAttr->m_minimum = m_lowerLimit;
|
||||
myAttr->m_maximum = m_upperLimit;
|
||||
myAttr->m_delaySliderUpdateUntilRelease = true;
|
||||
}
|
||||
else if ( field == &m_topBottomN )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user