1. Comment about OCC bug for edit constraint objects after their selection(bug is 25034).
if (!hasSketchPlane()) {
}
else {
+ /// TODO: OCC bug: 25034 - the highlighted list should be filled not only for AIS_Shape
+ /// but for other IO, for example constraint dimensions.
+ /// It is empty and we have to use the process mouse release to start edition operation
+ /// for these objects
if (theSelected.size() == 1) {
FeaturePtr aFeature = theSelected.front().feature();
if (aFeature)
/// \param theShape the shape
void setSketchPlane(const TopoDS_Shape& theShape);
- /// Returns the operation type, which is feature or constraint edit opeation
- /// \param theFeature a feature instance
- std::string getOperationType(FeaturePtr theFeature);
-
private:
std::list<XGUI_ViewerPrs> myFeatures; ///< the features to apply the edit operation
};