From: mpv Date: Tue, 22 Jan 2019 10:15:19 +0000 (+0300) Subject: Fix the problem of the sketch plane update X-Git-Tag: Jan2019~10 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=6be49d86df5a1a63380e5b22fb33e97cacff35ce;p=modules%2Fshaper.git Fix the problem of the sketch plane update --- 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 ||