From 8fb662b0aa6949ad10f133764fd8c2999461b809 Mon Sep 17 00:00:00 2001 From: Zernova Marina <36417100+mzernova@users.noreply.github.com> Date: Mon, 17 Feb 2025 15:52:24 +0000 Subject: [PATCH] Visualization - NCollection_DataMap::Find() exception from AIS_Selection::Select() #375 Problem with NCollection_DataMap::Find() exception during multiple selection in OCC viewer. Incorrect call is made from AIS_Selection::Select() method at line: AIS_NListOfEntityOwner::Iterator aListIter = myResultMap.Find (theOwner); Original issue: 0033742 --- src/AIS/AIS_Selection.cxx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/AIS/AIS_Selection.cxx b/src/AIS/AIS_Selection.cxx index 874ba363bb..039f3004ca 100644 --- a/src/AIS/AIS_Selection.cxx +++ b/src/AIS/AIS_Selection.cxx @@ -65,8 +65,11 @@ AIS_SelectStatus AIS_Selection::Select(const Handle(SelectMgr_EntityOwner)& theO const Standard_Boolean wasSelected = theOwner->IsSelected(); const Standard_Boolean toSelect = theOwner->Select(theSelScheme, isDetected); - if (toSelect && !wasSelected) + if (!wasSelected || !myResultMap.IsBound(theOwner)) { + if (!toSelect) + return AIS_SS_NotDone; + AIS_NListOfEntityOwner::Iterator aListIter; myresult.Append(theOwner, aListIter); myResultMap.Bind(theOwner, aListIter); @@ -74,11 +77,6 @@ AIS_SelectStatus AIS_Selection::Select(const Handle(SelectMgr_EntityOwner)& theO return AIS_SS_Added; } - if (!toSelect && !wasSelected) - { - return AIS_SS_NotDone; - } - AIS_NListOfEntityOwner::Iterator aListIter = myResultMap.Find(theOwner); if (myIterator == aListIter) {