QProgressDialog
Not Responding
#140
Replies: 0 comments 1 reply
-
"(Not Responding)" in Windows is usually the consequence of a deadlock. Historically, a lot of confusion has surfaced over whether to override
Though both methods are accepted, I chose to use After careful consideration, I removed the self.thread.started.connect(self.worker.load) which fixed the problem. I think this fixed it because in Python:
However, the above being the case, I'm not sure why the progress bar can run halfway through (up to 51%) before hitting a deadlock. I would love it if someone could explain this! |
Beta Was this translation helpful? Give feedback.
-
I am using
pyvistaqt
and want display a progress bar window when I load data. I have success without usingpyvista
withPyQt
(see this SO post), however it isn't working when I addvtk
.I think something is still blocking the main thread, but I don't know what. Either the progress bar won't show at all, or if it does, half way through the bar stops loading and stops responding. Any help would be much appreciated:
Setup:
Output:
MRE
Beta Was this translation helpful? Give feedback.
All reactions