[FEM] Elmer: fix pipeline update issue

- the existing result pipeline can have several children. They must all be updated.
This commit is contained in:
Uwe
2022-08-07 06:22:42 +02:00
parent 6029a45d6c
commit 42e4f53366
5 changed files with 25 additions and 3 deletions

View File

@@ -226,6 +226,12 @@ void FemPostPipeline::onChanged(const Property* prop)
}
void FemPostPipeline::recomputeChildren()
{
for (const auto &obj : Filter.getValues())
obj->touch();
}
FemPostObject* FemPostPipeline::getLastPostObject() {
if (Filter.getValues().empty())