https://bugs.kde.org/show_bug.cgi?id=462045

--- Comment #11 from renaud.guezen...@gmail.com ---
Ok, it's getting weirder. 
I put some debug output around the loading of the preview.html page. 

```
connect(
        this,
        &QWebEngineView::loadFinished,
        [d](bool ok) {
            qDebug() << "load finished" << ok;
            d->onLoadFinished(ok);
        }
    );
    connect(this, &QWebEngineView::loadProgress, this, [](int p){
        qDebug() << "progress" << p;
        });
    connect(this, &QWebEngineView::loadStarted, this, [](){
        qDebug() << "load started";
        });
```

>From QtCreator:
load started
progress 0
progress 70
progress 100
load finished true


on the installed application:
load started
progress 0
export as HTML 100298
Future finished
onHtmlReady true
set Future
progress 100


The loading is working fine from QtCreator but when installed, the loadFinished
is never received and during the load it is already trying to display the
preview.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to