Display polygon project items if RiaApplication::enableDevelopmentFeatures() is defined

This commit is contained in:
Magne Sjaastad
2024-02-16 13:56:02 +01:00
parent 16896212d4
commit 8fe82423ae
3 changed files with 15 additions and 3 deletions

View File

@@ -20,6 +20,7 @@
#include "RimEclipseView.h"
#include "RiaApplication.h"
#include "RiaColorTables.h"
#include "RiaFieldHandleTools.h"
#include "RiaLogging.h"
@@ -1953,7 +1954,10 @@ void RimEclipseView::defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrderin
if ( surfaceInViewCollection() ) uiTreeOrdering.add( surfaceInViewCollection() );
if ( seismicSectionCollection()->shouldBeVisibleInTree() ) uiTreeOrdering.add( seismicSectionCollection() );
uiTreeOrdering.add( m_polygonCollection );
if ( RiaApplication::enableDevelopmentFeatures() )
{
uiTreeOrdering.add( m_polygonCollection );
}
uiTreeOrdering.skipRemainingChildren( true );
}