#2917 Vector Selection Dialog: Fix missing selection text

This commit is contained in:
Jacob Støren
2018-05-15 14:25:53 +02:00
parent a222c096f3
commit d34e517968
2 changed files with 5 additions and 3 deletions

View File

@@ -109,7 +109,7 @@ void RiuSummaryCurveDefSelectionDialog::setEnsembleAndAddress(RimSummaryCaseColl
//--------------------------------------------------------------------------------------------------
std::vector<RiaSummaryCurveDefinition> RiuSummaryCurveDefSelectionDialog::curveSelection() const
{
return summaryAddressSelection()->allCurveDefinitionsFromSelection();
return summaryAddressSelection()->selection();
}
//--------------------------------------------------------------------------------------------------
@@ -142,7 +142,7 @@ RiuSummaryCurveDefSelection* RiuSummaryCurveDefSelectionDialog::summaryAddressSe
void RiuSummaryCurveDefSelectionDialog::updateLabel()
{
QString curveAddressText;
std::vector<RiaSummaryCurveDefinition> sumCasePairs = this->summaryAddressSelection()->allCurveDefinitionsFromSelection();
std::vector<RiaSummaryCurveDefinition> sumCasePairs = this->summaryAddressSelection()->selection();
if (sumCasePairs.size() == 1)
{
curveAddressText = sumCasePairs.front().curveDefinitionText();