Skip to content

Commit

Permalink
Hide "Views" level in project tree.
Browse files Browse the repository at this point in the history
  • Loading branch information
kriben committed Apr 15, 2024
1 parent 19f30d4 commit 72de136
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ApplicationLibCode/ProjectDataModel/RimEclipseCase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,10 @@ void RimEclipseCase::defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrderin
{
if ( uiConfigName == "MainWindow.ProjectTree" )
{
uiTreeOrdering.add( &m_viewCollection );
for ( auto view : m_viewCollection->views() )
{
uiTreeOrdering.add( view );
}

if ( !m_2dIntersectionViewCollection->views().empty() )
{
Expand Down

0 comments on commit 72de136

Please sign in to comment.