#8623 Contour Map: exclude surfaces from appearing

Fixes #8623.
This commit is contained in:
Kristian Bendiksen
2022-03-23 10:59:18 +01:00
parent c87d68899e
commit d4d79d3dec
4 changed files with 19 additions and 6 deletions

View File

@@ -560,3 +560,12 @@ void RimEclipseContourMapView::onLegendConfigChanged( const caf::SignalEmitter*
m_contourMapProjection->clearGeometry();
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
RimSurfaceInViewCollection* RimEclipseContourMapView::surfaceInViewCollection() const
{
// Surfaces should not be shown in contour map.
return nullptr;
}