testing if qtwebkitwidgets is the problem

This commit is contained in:
stalbe_j
2023-04-14 08:59:25 +02:00
parent b570f0c885
commit 28ebdae35b

View File

@ -1,9 +1,11 @@
from PyQt5.QtCore import QUrl
try:
from PyQt5.QtWebKitWidgets import QWebView
except ImportError:
from PyQt5.QtWebEngineWidgets import QWebEngineView as QWebView
# try:
# from PyQt5.QtWebKitWidgets import QWebView
# except ImportError:
# from PyQt5.QtWebEngineWidgets import QWebEngineView as QWebView
from PyQt5.QtWebEngineWidgets import QWebEngineView as QWebView
class WebView(QWebView):