mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#4111 3D calculations : Always show difference options
This commit is contained in:
parent
3ca43b1644
commit
f9021117f4
@ -43,9 +43,8 @@ RimEclipseFaultColors::RimEclipseFaultColors()
|
|||||||
|
|
||||||
CAF_PDM_InitFieldNoDefault(&m_customFaultResultColors, "CustomResultSlot", "Custom Fault Result", ":/CellResult.png", "", "");
|
CAF_PDM_InitFieldNoDefault(&m_customFaultResultColors, "CustomResultSlot", "Custom Fault Result", ":/CellResult.png", "", "");
|
||||||
m_customFaultResultColors = new RimEclipseCellColors();
|
m_customFaultResultColors = new RimEclipseCellColors();
|
||||||
|
|
||||||
m_customFaultResultColors.uiCapability()->setUiHidden(true);
|
m_customFaultResultColors.uiCapability()->setUiHidden(true);
|
||||||
|
m_customFaultResultColors->setDiffResultOptionsEnabled(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
@ -72,6 +72,7 @@ RimEclipsePropertyFilter::RimEclipsePropertyFilter()
|
|||||||
|
|
||||||
CAF_PDM_InitFieldNoDefault(&resultDefinition, "ResultDefinition", "Result Definition", "", "", "");
|
CAF_PDM_InitFieldNoDefault(&resultDefinition, "ResultDefinition", "Result Definition", "", "", "");
|
||||||
resultDefinition = new RimEclipseResultDefinition();
|
resultDefinition = new RimEclipseResultDefinition();
|
||||||
|
resultDefinition->setDiffResultOptionsEnabled(true);
|
||||||
|
|
||||||
// Set to hidden to avoid this item to been displayed as a child item
|
// Set to hidden to avoid this item to been displayed as a child item
|
||||||
// Fields in this object are displayed using defineUiOrdering()
|
// Fields in this object are displayed using defineUiOrdering()
|
||||||
|
@ -168,6 +168,9 @@ void RimEclipseResultDefinition::simpleCopy(const RimEclipseResultDefinition* ot
|
|||||||
this->setSelectedSouringTracers(other->m_selectedSouringTracers());
|
this->setSelectedSouringTracers(other->m_selectedSouringTracers());
|
||||||
m_flowTracerSelectionMode = other->m_flowTracerSelectionMode();
|
m_flowTracerSelectionMode = other->m_flowTracerSelectionMode();
|
||||||
m_phaseSelection = other->m_phaseSelection;
|
m_phaseSelection = other->m_phaseSelection;
|
||||||
|
|
||||||
|
m_differenceCase = other->m_differenceCase();
|
||||||
|
m_timeLapseBaseTimestep = other->m_timeLapseBaseTimestep();
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user