Disable experimental settings for only load active cells

This commit is contained in:
Magne Sjaastad 2024-09-24 08:51:41 +02:00
parent 12ae4dbaaa
commit e1864bf93b

View File

@ -137,8 +137,9 @@ void RiaPreferencesGrid::appendItems( caf::PdmUiOrdering& uiOrdering )
auto resdataGrp = uiOrdering.addNewGroup( "ResData Reader Settings" ); auto resdataGrp = uiOrdering.addNewGroup( "ResData Reader Settings" );
resdataGrp->add( &m_useResultIndexFile ); resdataGrp->add( &m_useResultIndexFile );
auto opmcGrp = uiOrdering.addNewGroup( "OPM Common Reader Settings" ); // TODO: Disabled for the 2024.09 release, enable after release
opmcGrp->add( &m_onlyLoadActiveCells ); // auto opmcGrp = uiOrdering.addNewGroup( "OPM Common Reader Settings" );
// opmcGrp->add( &m_onlyLoadActiveCells );
const bool setFaultImportSettingsReadOnly = !importFaults(); const bool setFaultImportSettingsReadOnly = !importFaults();
@ -181,7 +182,7 @@ RifReaderSettings RiaPreferencesGrid::readerSettings()
m_skipWellData, m_skipWellData,
true, // import summary data true, // import summary data
m_includeFileAbsolutePathPrefix, m_includeFileAbsolutePathPrefix,
m_onlyLoadActiveCells, onlyLoadActiveCells(),
m_invalidateLongThinCells }; m_invalidateLongThinCells };
return rs; return rs;
} }
@ -263,7 +264,8 @@ bool RiaPreferencesGrid::autoComputeDepthRelatedProperties() const
//-------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------
bool RiaPreferencesGrid::onlyLoadActiveCells() const bool RiaPreferencesGrid::onlyLoadActiveCells() const
{ {
return m_onlyLoadActiveCells; return false;
// return m_onlyLoadActiveCells;
} }
//-------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------