Hello All !

I'm using QTextEdit to display local text with embedded images from the internet. In the constructor I'm setting the text using setHtml(), and then I'm calling textEdit->document()->addResource() when each image arrives. After adding each image I want QTextEdit to immediately show it, the only way I've found to do it is to call textEdit->setHtml(textEdit->toHtml()), but this is really slow and causes flicker. Are there any better ways to do it ?