make new Part.Line behaviour the default

This commit is contained in:
wmayer
2017-02-09 21:47:25 +01:00
parent 613d8eeda1
commit c19dd8b4c7
2 changed files with 2 additions and 2 deletions

View File

@@ -298,7 +298,7 @@ PyMODINIT_FUNC initPart()
// General
Base::Reference<ParameterGrp> hGenPGrp = hPartGrp->GetGroup("General");
if (hGenPGrp->GetBool("LineOld", true)) {
if (hGenPGrp->GetBool("LineOld", false)) {
Base::Interpreter().addType(&Part::LinePy ::Type,partModule,"_Line");
Base::Interpreter().addType(&Part::LinePyOld ::Type,partModule,"Line");
}