Hi all,
wonder if anyone has encountered an explanation for this.
I ve got a QApplication in python that runs a background Qthread. When this background QThread finishes it launches another widget, much like a splash screen.
Everything when executed withi python.exe runs correctly: the splash screen shows up with some kind of animation and after the background thread finishes processing the new Windows Widget appears,
Then im trying to call this same QApplication from another script doing a subprocess.Popen/subprocess.check_call and the Splash Screen Gui launches but it remains stuck there and the following widget doesnot appear.
Im guessing the finished signal of the background QThread isnt emitted due to the multiprocessing/multhreading fact but that' s only a guess.
Any hints on this?