[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

@@ -61,7 +61,7 @@ bool getRefineModelParameter()
{
Base::Reference<ParameterGrp> hGrp = App::GetApplication().GetUserParameter()
.GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("Mod/Part/Boolean");
return hGrp->GetBool("RefineModel", false);
return hGrp->GetBool("RefineModel", true);
}
}