mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-15 10:08:35 +05:00
Fix problem with 'Glue all coincident edges' option
This commit is contained in:
parent
21f352b21b
commit
eaa8500465
@ -493,7 +493,8 @@ bool RepairGUI_GlueDlg::execute(ObjectList& objects)
|
||||
GEOM::GEOM_Object_var anObj;
|
||||
if (myGlueMode == TopAbs_FACE) {
|
||||
bool doGlueAllEdges = myGlueAllEdgesChk->isChecked();
|
||||
anObj = anOper->MakeGlueFacesByList(myObject, myTolEdt2->value(), aListForGlue.in(), true, false);
|
||||
anObj = anOper->MakeGlueFacesByList(myObject, myTolEdt2->value(), aListForGlue.in(),
|
||||
true, doGlueAllEdges);
|
||||
}
|
||||
else if (myGlueMode == TopAbs_EDGE)
|
||||
anObj = anOper->MakeGlueEdgesByList(myObject, myTolEdt2->value(), aListForGlue.in());
|
||||
|
Loading…
Reference in New Issue
Block a user