mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 15:24:05 +00:00
fix:F12 crash on qt6.2
This commit is contained in:
parent
fa2aae908b
commit
eebe109e7e
|
@ -14,7 +14,10 @@ void ArticleInspector::setInspectPage( QWebEnginePage * page )
|
|||
{
|
||||
this->inspectedPage = page;
|
||||
page->setDevToolsPage( inspectView->page() );
|
||||
#if (QT_VERSION < QT_VERSION_CHECK(6,0,0))
|
||||
//this line will crash application on qt6.2 ,see https://bugreports.qt.io/browse/QTBUG-101724
|
||||
page->triggerAction( QWebEnginePage::InspectElement );
|
||||
#endif
|
||||
raise();
|
||||
show();
|
||||
}
|
||||
|
|
|
@ -16,8 +16,6 @@
|
|||
/// to the view's current state. This is used to open links in new tabs when
|
||||
/// they are clicked with middle button. There's also an added possibility to
|
||||
/// get double-click events after the fact with the doubleClicked() signal.
|
||||
/// 2. Manage our own QWebInspector instance. In order to show inspector correctly,
|
||||
/// use triggerPageAction( QWebEnginePage::InspectElement ) instead.
|
||||
class ArticleWebView: public QWebEngineView
|
||||
{
|
||||
Q_OBJECT
|
||||
|
|
Loading…
Reference in a new issue