mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#6447 Reduce decimals for correlation sorted parameter list
This commit is contained in:
@@ -771,7 +771,7 @@ QList<caf::PdmOptionItemInfo> RimEnsembleCurveSet::calculateValueOptions( const
|
|||||||
QString name = paramCorrPair.first.name;
|
QString name = paramCorrPair.first.name;
|
||||||
double corr = paramCorrPair.second;
|
double corr = paramCorrPair.second;
|
||||||
options.push_back(
|
options.push_back(
|
||||||
caf::PdmOptionItemInfo( QString( "%1 (Avg. correlation: %2)" ).arg( name ).arg( corr ), name ) );
|
caf::PdmOptionItemInfo( QString( "%1 (Avg. correlation: %2)" ).arg( name ).arg( corr, 5, 'f', 2 ), name ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ( fieldNeedingOptions == &m_yValuesSummaryAddressUiField )
|
else if ( fieldNeedingOptions == &m_yValuesSummaryAddressUiField )
|
||||||
|
|||||||
Reference in New Issue
Block a user