]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Fix problem with 'Glue all coincident edges' option
authorjfa <jfa@opencascade.com>
Wed, 28 Dec 2011 10:50:01 +0000 (10:50 +0000)
committerjfa <jfa@opencascade.com>
Wed, 28 Dec 2011 10:50:01 +0000 (10:50 +0000)
src/RepairGUI/RepairGUI_GlueDlg.cxx

index 950f9d0cde6c362e7a8108218e7592bc3c95889d..2c2efec5e07ffb7b34aa002e844f1070d4b0ea9c 100644 (file)
@@ -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());