You should only use Qt objects on a single thread. There is a way to transfer objects from onethread to another, but I would not bother. Instead have your worker threads emit signals with data in some non Qt object form, like a python dit or whatever and have the main thread convert it into needed Qt objects.
|