[PyQt] isRunning() returns true after QThread completion

2012-02-26 Thread Lars Beiderbecke
Hello, In my application some QThreads still return isRunning() == true when they should be completed. More specifically, I'm using QThreads to load images asynchronously in the background. By emitting a signal, the thread notifies the main window that the pixmap has been loaded and the

Re: [PyQt] isRunning() returns true after QThread completion

2012-02-28 Thread Lars Beiderbecke
of the receiver's thread. That should give run() plenty of time to finish after emitting the signal, no? Regards Lars On Sun, Feb 26, 2012 at 10:06 PM, Hans-Peter Jansen h...@urpla.net wrote: Dear Lars, On Sunday 26 February 2012, 15:55:25 Lars Beiderbecke wrote: Hello, In my application