PyFlow
PyFlow copied to clipboard
How do I make sure the main GUI stays responsive when a node has long compute times?
The GUI becomes unresponsive and I don't see the node color change to the "computing" color while it's executing.
Maybe I am creating my nodes wrong.
I was able to solve the issue by creating my own worker thread instead of using the main thread which is what the QT GUI uses.
But the underlying issue I believe still exists in the baseline repo.
I was able to solve the issue by creating my own worker thread instead of using the main thread which is what the QT GUI uses.
But the underlying issue I believe still exists in the baseline repo.
Could you share your solution?