mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-27 00:36:53 -06:00
#4982 Preferences : Add groups to System tab
This commit is contained in:
parent
0b3e5ecf0c
commit
dc983b5b84
@ -480,18 +480,23 @@ void RiaPreferences::defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering&
|
||||
}
|
||||
else if ( RiaApplication::enableDevelopmentFeatures() && uiConfigName == RiaPreferences::tabNameSystem() )
|
||||
{
|
||||
uiOrdering.add( &m_appendClassNameToUiText );
|
||||
uiOrdering.add( &m_appendFieldKeywordToToolTipText );
|
||||
uiOrdering.add( &m_showViewIdInProjectTree );
|
||||
{
|
||||
caf::PdmUiGroup* group = uiOrdering.addNewGroup( "Project Tree" );
|
||||
group->add( &m_appendClassNameToUiText );
|
||||
group->add( &m_appendFieldKeywordToToolTipText );
|
||||
group->add( &m_showViewIdInProjectTree );
|
||||
}
|
||||
|
||||
{
|
||||
caf::PdmUiGroup* group = uiOrdering.addNewGroup( "3D View" );
|
||||
group->add( &m_useShaders );
|
||||
group->add( &m_showHud );
|
||||
}
|
||||
|
||||
uiOrdering.add( &m_showProjectChangedDialog );
|
||||
|
||||
uiOrdering.add( &m_showTestToolbar );
|
||||
uiOrdering.add( &m_includeFractureDebugInfoFile );
|
||||
uiOrdering.add( &m_holoLensExportFolder );
|
||||
|
||||
uiOrdering.add( &m_useShaders );
|
||||
uiOrdering.add( &m_showHud );
|
||||
}
|
||||
|
||||
uiOrdering.skipRemainingFields( true );
|
||||
|
Loading…
Reference in New Issue
Block a user