How to make Qt work when main thread is busy?
No, you should be doing your calculations in a separate thread. As you already mentioned, there is a work-around available in QCoreApplication::processEvents(), but it sounds like you’re unable to make that work for you. If you don’t want to have to do all the work of setting up a QThread and moving all your code, … Read more