1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-04 13:13:25 +03:00

0028088: Visualization, AIS_InteractiveContext - drop default value for Update Viewer parameter

This commit is contained in:
isk
2016-12-27 13:24:08 +03:00
committed by kgv
parent 9bcfd6f649
commit 0577ae8ca4
65 changed files with 884 additions and 715 deletions

View File

@@ -94,7 +94,7 @@ void CRadiusParamsPage::OnBnClickedObjectBtn()
}
}
myAISContext->ClearSelected();
myAISContext->ClearSelected (Standard_False);
CDimensionDlg *aDimDlg = (CDimensionDlg*)(this->GetParentOwner());
// Try to create dimension if it is possible
Handle(AIS_Dimension) aDim;
@@ -125,6 +125,6 @@ void CRadiusParamsPage::OnBnClickedObjectBtn()
// Display dimension in the neutral point
myAISContext->Display (aDim);
myAISContext->Display (aDim, Standard_True);
myAISContext->Activate (AIS_Shape::SelectionMode (TopAbs_EDGE));
}