#4230 Plot Cell Property Filter : Return if result property data is missing

This commit is contained in:
Magne Sjaastad 2019-03-26 15:23:30 +01:00
parent 733b7201b5
commit 0726b32087

View File

@ -139,6 +139,8 @@ void RimPlotCellPropertyFilter::updateCellVisibilityFromFilter(size_t timeStepIn
resDef->loadResult();
if (resDef->currentGridCellResults()->hasResultEntry(resDef->eclipseResultAddress())) return;
RigCaseCellResultsData* cellResultsData = resDef->currentGridCellResults();
if (!cellResultsData) return;