[Part] Fix Part Boolean operations Refine incorrectly set for new users (#24256)

* [Part] Fix Part Boolean operations Refine incorrectly set for new users

* [Part] update tests to specify Refine to be...

...false where necessary
This commit is contained in:
Syres916
2025-09-27 06:33:57 +01:00
committed by GitHub
parent e2da81bf4a
commit ac0a60f7a6
7 changed files with 7 additions and 2 deletions

View File

@@ -150,6 +150,7 @@ TEST_F(PartFeaturesTest, testRefine)
auto _fuse = _doc->addObject<Part::Fuse>();
_fuse->Base.setValue(_boxes[0]);
_fuse->Tool.setValue(_boxes[3]);
_fuse->Refine.setValue(false);
_fuse->execute();
Part::TopoShape fusedts = _fuse->Shape.getShape();
auto _refine = _doc->addObject<Refine>();