#6412 Hide experimental Stimplan features behind RESINSIGHT_DEVEL env var.

This commit is contained in:
Kristian Bendiksen
2020-09-02 10:40:39 +02:00
parent 27ee22f420
commit ae18dc8898
2 changed files with 27 additions and 9 deletions

View File

@@ -1442,7 +1442,10 @@ void RimProject::defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, Q
if ( mainPlotCollection->fractureModelPlotCollection() )
{
itemCollection->add( mainPlotCollection->fractureModelPlotCollection() );
if ( RiaApplication::enableDevelopmentFeatures() )
{
itemCollection->add( mainPlotCollection->fractureModelPlotCollection() );
}
}
}