[FEM] fix pipeline recompute issue

- after a simulation was run, the pipelines and its childs are recomputed but its shape coloring is not updated.

- also update XML documentation
- also remove comment in tasks.py for now
This commit is contained in:
Uwe
2022-08-08 02:04:07 +02:00
parent b397633f27
commit ee127273c1
6 changed files with 62 additions and 27 deletions

View File

@@ -40,6 +40,16 @@ std::string ViewProviderFemPostPipelinePy::representation(void) const
return std::string("<ViewProviderFemPostPipeline object>");
}
PyObject *ViewProviderFemPostPipelinePy::updateColorBars(PyObject *args)
{
if (!PyArg_ParseTuple(args, ""))
return nullptr;
this->getViewProviderFemPostPipelinePtr()->updateColorBars();
Py_Return;
}
PyObject *ViewProviderFemPostPipelinePy::transformField(PyObject *args)
{
char *FieldName;