#5019 Add separate intersection results collection and items

This commit is contained in:
Jacob Støren
2019-11-12 11:51:50 +01:00
parent f6126497e7
commit fec449dc43
11 changed files with 444 additions and 0 deletions

View File

@@ -60,6 +60,7 @@
#include "cafPdmUiToolButtonEditor.h"
#include "cafPdmUiTreeSelectionEditor.h"
#include "cafUtils.h"
#include "RimIntersectionResultDefinition.h"
namespace caf
{
@@ -442,6 +443,13 @@ void RimEclipseResultDefinition::updateAnyFieldHasChanged()
cellColors->updateConnectedEditors();
}
RimIntersectionResultDefinition* intersectResDef = nullptr;
this->firstAncestorOrThisOfType( intersectResDef );
if ( intersectResDef )
{
intersectResDef->updateConnectedEditors();
}
RimGridCrossPlotDataSet* crossPlotCurveSet = nullptr;
this->firstAncestorOrThisOfType( crossPlotCurveSet );
if ( crossPlotCurveSet )