6 """ |
6 """ |
7 Module implementing a QWebEngineView to load the web inspector in. |
7 Module implementing a QWebEngineView to load the web inspector in. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSignal, QSize |
10 from PyQt6.QtCore import pyqtSignal, QSize |
11 from PyQt6.QtWebEngineWidgets import ( |
11 from PyQt6.QtWebEngineCore import QWebEnginePage, QWebEngineSettings |
12 QWebEngineView, QWebEnginePage, QWebEngineSettings |
12 from PyQt6.QtWebEngineWidgets import QWebEngineView |
13 ) |
|
14 |
13 |
15 import Preferences |
14 import Preferences |
16 |
15 |
17 _VIEWS = [] |
16 _VIEWS = [] |
18 |
17 |