Skip to content
Snippets Groups Projects
Commit 73bb3f8b authored by Mathieu Westphal (Kitware)'s avatar Mathieu Westphal (Kitware) :zap:
Browse files

Fix PolyLineWidget by calling Modified on the Points

When the point are modified, Modified() must be called on the points
as well.
parent 861591c9
No related branches found
No related tags found
No related merge requests found
......@@ -103,6 +103,7 @@ void vtkPolyLineRepresentation::BuildRepresentation()
}
this->PolyLineSource->SetClosed(this->Closed);
this->PolyLineSource->Modified();
points->Modified();
double bounds[6];
bbox.GetBounds(bounds);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment