fix: even loadfinised=false, the cursor will also have to be unset

This commit is contained in:
Xiao Yi Fang 2024-10-23 10:24:46 +08:00 committed by xiaoyifang
parent 245cb10880
commit 36f181547f

View file

@ -435,6 +435,8 @@ void ArticleView::loadFinished( bool result )
QUrl url = webview->url();
qDebug() << "article view loaded url:" << url.url().left( 200 ) << result;
webview->unsetCursor();
if ( url.url() == "about:blank" ) {
return;
}
@ -458,7 +460,6 @@ void ArticleView::loadFinished( bool result )
setActiveArticleId( "" );
}
webview->unsetCursor();
// Expand collapsed article if only one loaded
webview->page()->runJavaScript( QString( "gdCheckArticlesNumber();" ) );