#2975 Ensemble Curve Set: Add compound update function updateAll()

This commit is contained in:
Magne Sjaastad
2018-06-01 15:37:47 +02:00
parent 8dbfd5f878
commit ea7c5b6a76
5 changed files with 26 additions and 15 deletions

View File

@@ -200,6 +200,13 @@ void RimEnsembleCurveSet::loadDataAndUpdate(bool updateParentPlot)
m_yValuesUiFilterResultSelection = m_yValuesCurveVariable->address();
updateAllCurves();
if (updateParentPlot)
{
RimSummaryPlot* parentPlot;
firstAncestorOrThisOfTypeAsserted(parentPlot);
parentPlot->updateAll();
}
}
//--------------------------------------------------------------------------------------------------