mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
test: inspector windows
This commit is contained in:
parent
874b032baa
commit
0a07ab2278
|
@ -28,22 +28,11 @@ void ArticleInspector::setInspectPage( QWebEnginePage * page )
|
|||
}
|
||||
|
||||
qDebug() << page->lifecycleState();
|
||||
#if( QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 ) )
|
||||
#if( QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 ) || QT_VERSION > QT_VERSION_CHECK(6,3,0) )
|
||||
page->triggerAction( QWebEnginePage::InspectElement );
|
||||
#else
|
||||
// without this line, application will crash on qt6.2 ,see https://bugreports.qt.io/browse/QTBUG-101724
|
||||
// and seems to hangup forever on qt6.3.0 ,so the best solution for now is to comment out the following lines.
|
||||
static bool first{ true };
|
||||
if( first )
|
||||
{
|
||||
qDebug()<<"inspector,phase first time";
|
||||
first = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
qDebug()<<"inspector,phase not first time";
|
||||
page->triggerAction( QWebEnginePage::InspectElement );
|
||||
}
|
||||
#endif
|
||||
|
||||
raise();
|
||||
|
|
Loading…
Reference in a new issue