#1094 Gray out wells not visible because they do not intersect visible cells

This commit is contained in:
Magne Sjaastad
2017-01-27 15:50:17 +01:00
parent bd14f97a2b
commit 7b6574327e
3 changed files with 33 additions and 0 deletions

View File

@@ -791,6 +791,13 @@ void RimEclipseView::updateDisplayModelVisibility()
m_viewer->update();
faultCollection->updateConnectedEditors();
// This is required to update the read-only state of simulation wells
// when a range filter is manipulated and visible simulation wells might change
//
// The visibility is controlled by RimEclipseWell::defineUiTreeOrdering
// updateConnectedEditors will call recursively on child objects
wellCollection->updateConnectedEditors();
}
//--------------------------------------------------------------------------------------------------