TopologicalSimplification will not allways process with new data
r-englund opened this issue · 1 comments
r-englund commented
If the processor gets new data (or properties are modified) while the background thread is processing no new calculation will be started since both the if
statement and the else if
statements are false.
To work around this one has to invalidate the output of the processor to start the calculation on the new data.
A fix for this would be to change the else if
to a plain else
petersteneteg commented
but that would also potentially spawn lots and lots of background jobs when interacting...