1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0023654: Problem with displaying vertices in OCC view after closing all OCC views and opening new one

Update CSharp sample
This commit is contained in:
bugmaster 2013-10-04 11:09:24 +04:00
parent 4798010403
commit bcb1adc56d

View File

@ -302,7 +302,7 @@ void OCCViewer::EraseObjects(void)
if (myAISContext.IsNull())
return;
for(myAISContext->InitCurrent();myAISContext->MoreCurrent();myAISContext->NextCurrent())
myAISContext->Erase(myAISContext->Current(),Standard_True,Standard_False);
myAISContext->Erase(myAISContext->Current(),Standard_True);
myAISContext->ClearCurrents();
}