From 6be49d86df5a1a63380e5b22fb33e97cacff35ce Mon Sep 17 00:00:00 2001 From: mpv Date: Tue, 22 Jan 2019 13:15:19 +0300 Subject: [PATCH] Fix the problem of the sketch plane update --- src/Model/Model_Update.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Model_Update.cpp b/src/Model/Model_Update.cpp index db6fc41bc..1f4001e78 100755 --- a/src/Model/Model_Update.cpp +++ b/src/Model/Model_Update.cpp @@ -589,7 +589,7 @@ bool Model_Update::processFeature(FeaturePtr theFeature) double aNX = aNorm->x(), aNY = aNorm->y(), aNZ = aNorm->z(); // update sketch plane updateArguments(theFeature); - //theFeature->attributeChanged("External"); // to recompute origin, direction and normal + theFeature->attributeChanged("External"); // to recompute origin, direction and normal // check it is updated, so all must be changed if (anOrigin->x() != anOX || anOrigin->y() != anOY || anOrigin->z() != anOZ || aDir->x() != aDX || aDir->y() != aDY || aDir->z() != aDZ || -- 2.39.2