mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#2659 Ensemble statistics. Do not update curve appearance for statistic curves
This commit is contained in:
parent
661ce06553
commit
7b462616bf
@ -783,6 +783,8 @@ void RimEnsembleCurveSet::updateCurveColors()
|
||||
|
||||
for (auto& curve : m_curves)
|
||||
{
|
||||
if (curve->summaryAddressY().category() == RifEclipseSummaryAddress::SUMMARY_ENSEMBLE_STATISTICS) continue;
|
||||
|
||||
RimSummaryCase* rimCase = curve->summaryCaseY();
|
||||
QString tValue = rimCase->hasCaseRealizationParameters() ?
|
||||
rimCase->caseRealizationParameters()->parameterValue(parameterName).textValue() :
|
||||
@ -819,6 +821,8 @@ void RimEnsembleCurveSet::updateCurveColors()
|
||||
|
||||
for (auto& curve : m_curves)
|
||||
{
|
||||
if (curve->summaryAddressY().category() == RifEclipseSummaryAddress::SUMMARY_ENSEMBLE_STATISTICS) continue;
|
||||
|
||||
RimSummaryCase* rimCase = curve->summaryCaseY();
|
||||
double value = rimCase->hasCaseRealizationParameters() ?
|
||||
rimCase->caseRealizationParameters()->parameterValue(parameterName).numericValue() :
|
||||
|
Loading…
Reference in New Issue
Block a user