Qt 6.11 is out! See what's new in the release
blog
Local html-images in QTextBrowser
General and Desktop
1
Posts
1
Posters
1.7k
Views
1
Watching
-
Well here is the problem.
I have an html-file (actually a collection of help-files) and when I want to show that file in a QTextBrowser, it only shows me a file-icon.
My html-code looks like:
<.img src="../images/image.png"/>And what i do in application:
@ui->txtHelp->setHtml(QString(helpData));@How can i fix this?