Faults: Include inactive fault geometry

This commit is contained in:
Magne Sjaastad
2014-01-07 15:07:02 +01:00
parent 7276c2ad31
commit c1f1804770

View File

@@ -1971,6 +1971,12 @@ std::vector<RivReservoirViewPartMgr::ReservoirGeometryCacheType> RimReservoirVie
{
faultParts.push_back(RivReservoirViewPartMgr::ACTIVE);
faultParts.push_back(RivReservoirViewPartMgr::ALL_WELL_CELLS);
if (this->showInactiveCells())
{
faultParts.push_back(RivReservoirViewPartMgr::INACTIVE);
faultParts.push_back(RivReservoirViewPartMgr::RANGE_FILTERED_INACTIVE);
}
}
return faultParts;