Skip to content
Snippets Groups Projects
Commit c6b74a91 authored by Florian Maurin's avatar Florian Maurin
Browse files

Fix filter Tessellate not updated when file reloaded

parent fee70536
Branches
Tags
No related merge requests found
......@@ -68,7 +68,7 @@ void vtkDataSetEdgeSubdivisionCriterion::SetMesh(vtkDataSet* mesh)
void vtkDataSetEdgeSubdivisionCriterion::SetCellId(vtkIdType cell)
{
if (cell == this->CurrentCellId)
if ((cell == this->CurrentCellId) && (!this->CurrentMesh->GetMTime() >= this->GetMTime()))
return;
this->CurrentCellId = cell;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment