mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Remove all use of .uiCapability()->setUiTreeHidden( true );
This commit is contained in:
@@ -100,13 +100,11 @@ RimGridCrossPlotDataSet::RimGridCrossPlotDataSet()
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_xAxisProperty, "XAxisProperty", "X-Axis Property" );
|
||||
m_xAxisProperty = new RimEclipseResultDefinition( caf::PdmUiItemInfo::TOP );
|
||||
m_xAxisProperty.uiCapability()->setUiTreeHidden( true );
|
||||
m_xAxisProperty.uiCapability()->setUiTreeChildrenHidden( true );
|
||||
m_xAxisProperty->setTernaryEnabled( false );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_yAxisProperty, "YAxisProperty", "Y-Axis Property" );
|
||||
m_yAxisProperty = new RimEclipseResultDefinition( caf::PdmUiItemInfo::TOP );
|
||||
m_yAxisProperty.uiCapability()->setUiTreeHidden( true );
|
||||
m_yAxisProperty.uiCapability()->setUiTreeChildrenHidden( true );
|
||||
|
||||
m_yAxisProperty->setTernaryEnabled( false );
|
||||
@@ -114,18 +112,15 @@ RimGridCrossPlotDataSet::RimGridCrossPlotDataSet()
|
||||
CAF_PDM_InitFieldNoDefault( &m_groupingProperty, "GroupingProperty", "Data Grouping Property" );
|
||||
m_groupingProperty = new RimEclipseCellColors;
|
||||
m_groupingProperty->useDiscreteLogLevels( true );
|
||||
m_groupingProperty.uiCapability()->setUiTreeHidden( true );
|
||||
CVF_ASSERT( m_groupingProperty->legendConfig() );
|
||||
m_groupingProperty->legendConfig()->setMappingMode( RimRegularLegendConfig::MappingType::CATEGORY_INTEGER );
|
||||
m_groupingProperty->setTernaryEnabled( false );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_nameConfig, "NameConfig", "Name" );
|
||||
m_nameConfig = new RimGridCrossPlotDataSetNameConfig();
|
||||
m_nameConfig.uiCapability()->setUiTreeHidden( true );
|
||||
m_nameConfig.uiCapability()->setUiTreeChildrenHidden( true );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_crossPlotCurves, "CrossPlotCurves", "Curves" );
|
||||
m_crossPlotCurves.uiCapability()->setUiTreeHidden( true );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_crossPlotRegressionCurves, "CrossPlotRegressionCurves", "Regression Curves", ":/regression-curve.svg" );
|
||||
|
||||
@@ -133,7 +128,6 @@ RimGridCrossPlotDataSet::RimGridCrossPlotDataSet()
|
||||
CAF_PDM_InitField( &m_customColor, "CustomColor", cvf::Color3f( cvf::Color3f::BLACK ), "Custom Color" );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_plotCellFilterCollection, "PlotCellFilterCollection", "Cell Filters" );
|
||||
m_plotCellFilterCollection.uiCapability()->setUiTreeHidden( true );
|
||||
m_plotCellFilterCollection.uiCapability()->setUiTreeChildrenHidden( true );
|
||||
m_plotCellFilterCollection = new RimPlotCellFilterCollection;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user