From a5ada045891010efb0490c7286984b668c2f3e69 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 13 Aug 2026 12:50:37 +0000 Subject: [PATCH 1/2] Initial plan From 17d560061062a069906faeaf30071e0da1f372c6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 13 Aug 2026 12:52:20 +0000 Subject: [PATCH 2/2] #14520 Fix Cell Edge Results loaded even if disabled Co-authored-by: magnesj <1793152+magnesj@users.noreply.github.com> --- ApplicationLibCode/ProjectDataModel/RimCellEdgeColors.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ApplicationLibCode/ProjectDataModel/RimCellEdgeColors.cpp b/ApplicationLibCode/ProjectDataModel/RimCellEdgeColors.cpp index 7a441cc708..4c8422eb7b 100644 --- a/ApplicationLibCode/ProjectDataModel/RimCellEdgeColors.cpp +++ b/ApplicationLibCode/ProjectDataModel/RimCellEdgeColors.cpp @@ -61,7 +61,7 @@ RimCellEdgeColors::RimCellEdgeColors() { CAF_PDM_InitObject( "Cell Edge Result", ":/EdgeResult_1.png" ); - CAF_PDM_InitField( &m_enableCellEdgeColors, "EnableCellEdgeColors", true, "Enable Cell Edge Results" ); + CAF_PDM_InitField( &m_enableCellEdgeColors, "EnableCellEdgeColors", false, "Enable Cell Edge Results" ); CAF_PDM_InitFieldNoDefault( &m_propertyType, "propertyType", "Property Type" ); @@ -112,6 +112,7 @@ void RimCellEdgeColors::setReservoirView( RimEclipseView* ownerReservoirView ) //-------------------------------------------------------------------------------------------------- void RimCellEdgeColors::loadResult() { + if ( !m_enableCellEdgeColors() ) return; if ( !m_reservoirView->currentGridCellResults() ) return; resetResultAddresses();