Skip to content

Commit

Permalink
+ fixes #1569: Bounding Box of Mesh::Feature in the Gui does not resp…
Browse files Browse the repository at this point in the history
…ect the Placement
  • Loading branch information
wwmayer committed Jun 2, 2014
1 parent 3291233 commit c31b661
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Mod/Mesh/App/MeshFeature.cpp
Expand Up @@ -58,6 +58,7 @@ Feature::~Feature()

App::DocumentObjectExecReturn *Feature::execute(void)
{
this->Mesh.touch();
return App::DocumentObject::StdReturn;
}

Expand Down
1 change: 1 addition & 0 deletions src/Mod/Part/App/PartFeature.cpp
Expand Up @@ -91,6 +91,7 @@ App::DocumentObjectExecReturn *Feature::recompute(void)

App::DocumentObjectExecReturn *Feature::execute(void)
{
this->Shape.touch();
return App::DocumentObject::StdReturn;
}

Expand Down
1 change: 1 addition & 0 deletions src/Mod/Points/App/PointsFeature.cpp
Expand Up @@ -56,6 +56,7 @@ Feature::~Feature()

App::DocumentObjectExecReturn *Feature::execute(void)
{
this->Points.touch();
return App::DocumentObject::StdReturn;
}

Expand Down

0 comments on commit c31b661

Please sign in to comment.