revert the file's last commit

This commit is contained in:
Xiao YiFang 2022-08-10 19:42:52 +08:00
parent 2832419ec0
commit 8efac45a59

View file

@ -19,23 +19,22 @@ ArticleInspector::ArticleInspector( QWidget * parent ) : QWidget( parent, Qt::Wi
void ArticleInspector::setInspectPage( QWebEnginePage * page ) void ArticleInspector::setInspectPage( QWebEnginePage * page )
{ {
viewContainer->page()->setInspectedPage( page ); viewContainer->page()->setInspectedPage( page );
#if( QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 ) || QT_VERSION > QT_VERSION_CHECK( 6, 3, 0 ) ) #if( QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 ) )
page->triggerAction( QWebEnginePage::InspectElement ); page->triggerAction( QWebEnginePage::InspectElement );
#else #else
// without this line, application will crash on qt6.2 ,see https://bugreports.qt.io/browse/QTBUG-101724 // 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. // 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 };
//static bool first{ true }; if( first )
//if( first ) {
//{ qDebug()<<"inspector,phase first time";
// qDebug()<<"inspector,phase first time"; first = false;
// first = false; }
//} else
//else {
//{ qDebug()<<"inspector,phase not first time";
// qDebug()<<"inspector,phase not first time"; page->triggerAction( QWebEnginePage::InspectElement );
// page->triggerAction( QWebEnginePage::InspectElement ); }
//}
#endif #endif
raise(); raise();