Skip to content

Commit

Permalink
#11144 Make sure multi select of wells and a calculated curve works a…
Browse files Browse the repository at this point in the history
…s expected
  • Loading branch information
magnesj committed Jan 30, 2024
1 parent 2e7afeb commit 111eeb6
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1269,6 +1269,13 @@ void RiuSummaryVectorSelectionUi::buildAddressListForCategoryRecursively(
if ( !identifierPath.empty() )
{
identifierPath.pop_back();

if ( !identifierPath.empty() && identifierPath.back().first == SummaryIdentifierType::INPUT_ID )
{
// If the last identifier is an id, remove it as we get two ids for calculated results. One entry for the input vector name
// and one for the calculation id
identifierPath.pop_back();
}
}
}
}
Expand Down

0 comments on commit 111eeb6

Please sign in to comment.