mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Disable experimental settings for only load active cells
This commit is contained in:
parent
12ae4dbaaa
commit
e1864bf93b
@ -137,8 +137,9 @@ void RiaPreferencesGrid::appendItems( caf::PdmUiOrdering& uiOrdering )
|
||||
auto resdataGrp = uiOrdering.addNewGroup( "ResData Reader Settings" );
|
||||
resdataGrp->add( &m_useResultIndexFile );
|
||||
|
||||
auto opmcGrp = uiOrdering.addNewGroup( "OPM Common Reader Settings" );
|
||||
opmcGrp->add( &m_onlyLoadActiveCells );
|
||||
// TODO: Disabled for the 2024.09 release, enable after release
|
||||
// auto opmcGrp = uiOrdering.addNewGroup( "OPM Common Reader Settings" );
|
||||
// opmcGrp->add( &m_onlyLoadActiveCells );
|
||||
|
||||
const bool setFaultImportSettingsReadOnly = !importFaults();
|
||||
|
||||
@ -181,7 +182,7 @@ RifReaderSettings RiaPreferencesGrid::readerSettings()
|
||||
m_skipWellData,
|
||||
true, // import summary data
|
||||
m_includeFileAbsolutePathPrefix,
|
||||
m_onlyLoadActiveCells,
|
||||
onlyLoadActiveCells(),
|
||||
m_invalidateLongThinCells };
|
||||
return rs;
|
||||
}
|
||||
@ -263,7 +264,8 @@ bool RiaPreferencesGrid::autoComputeDepthRelatedProperties() const
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool RiaPreferencesGrid::onlyLoadActiveCells() const
|
||||
{
|
||||
return m_onlyLoadActiveCells;
|
||||
return false;
|
||||
// return m_onlyLoadActiveCells;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user