mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-24 08:20:34 +05:00
IPAL21265 It's impossible to select edge for Reverce in Arithmetic 1D Hypothesis when Edit Mesh
This commit is contained in:
parent
4137f1c07b
commit
f02c3a1b9e
@ -1066,14 +1066,17 @@ void SMESHGUI_MeshOp::createHypothesis (const int theDim,
|
||||
int obj = myDlg->getActiveObject();
|
||||
removeCustomFilters(); // Issue 0020170
|
||||
|
||||
// Set Geometry
|
||||
QStringList aList;
|
||||
myDlg->selectedObject( SMESHGUI_MeshDlg::Geom, aList );
|
||||
if (aList.count() != 0)
|
||||
aCreator->setShapeEntry( aList.first() );
|
||||
else
|
||||
aCreator->setShapeEntry( QString() );
|
||||
|
||||
// Get Entry of the Geom object
|
||||
QString anObjEntry = "";
|
||||
anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
|
||||
if ( anObjEntry == "" ) {
|
||||
anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
|
||||
_PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
|
||||
GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
|
||||
anObjEntry = aGeomVar->GetStudyEntry();
|
||||
}
|
||||
|
||||
aCreator->setShapeEntry( anObjEntry );
|
||||
myDlg->setEnabled( false );
|
||||
aCreator->create(initParamHyp, aHypName, myDlg);
|
||||
onActivateObject( obj ); // Issue 0020170. Restore filters
|
||||
@ -1129,14 +1132,17 @@ void SMESHGUI_MeshOp::onEditHyp( const int theHypType, const int theIndex )
|
||||
getInitParamsHypothesis( aHyp->GetName(), aHyp->GetLibName());
|
||||
aCreator->setInitParamsHypothesis( initParamHyp );
|
||||
|
||||
// Set Geometry
|
||||
QStringList aList;
|
||||
myDlg->selectedObject( SMESHGUI_MeshDlg::Geom, aList );
|
||||
if (aList.count() > 0)
|
||||
aCreator->setShapeEntry( aList.first() );
|
||||
else
|
||||
aCreator->setShapeEntry( "" );
|
||||
// Get Entry of the Geom object
|
||||
QString anObjEntry = "";
|
||||
anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
|
||||
if ( anObjEntry == "" ) {
|
||||
anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
|
||||
_PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
|
||||
GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
|
||||
anObjEntry = aGeomVar->GetStudyEntry();
|
||||
}
|
||||
|
||||
aCreator->setShapeEntry( anObjEntry );
|
||||
int obj = myDlg->getActiveObject();
|
||||
removeCustomFilters(); // Issue 0020170
|
||||
myDlg->setEnabled( false );
|
||||
|
@ -201,7 +201,7 @@ void StdMeshersGUI_EdgeDirectionParamWdg::SelectionIntoArgument()
|
||||
if ( !CORBA::is_nil( aGeomFatherObj ) ) {
|
||||
// Get Main Shape
|
||||
GEOM::GEOM_Object_var aGeomMain = GetGeomObjectByEntry( myEntry );
|
||||
if ( !CORBA::is_nil( aGeomMain ) || aGeomMain->GetType() == 37 ) { // Main Shape is a Group
|
||||
if ( !CORBA::is_nil( aGeomMain ) && aGeomMain->GetType() == 37 ) { // Main Shape is a Group
|
||||
GEOM::GEOM_Object_ptr aMainFatherObj = aGeomMain->GetMainShape();
|
||||
if ( !CORBA::is_nil( aMainFatherObj ) )
|
||||
aMainFatherEntry = aMainFatherObj->GetStudyEntry();
|
||||
|
Loading…
Reference in New Issue
Block a user