diff -r 5464b9c31cf9 -r b2c4c2f3fda7 eric7/UI/Previewers/PreviewerHTML.py --- a/eric7/UI/Previewers/PreviewerHTML.py Fri Sep 24 16:34:46 2021 +0200 +++ b/eric7/UI/Previewers/PreviewerHTML.py Fri Sep 24 17:37:38 2021 +0200 @@ -51,11 +51,6 @@ self.__previewAvailable = True try: - # TODO: remove this workaround once rc0 issue is fixed - # Workaround for a bug in Qt 6.2.0 rc0 on non-Linux - if not sys.platform.startswith("linux"): - raise ImportError - from PyQt6.QtWebEngineWidgets import QWebEngineView self.previewView = QWebEngineView(self) self.previewView.page().linkHovered.connect(self.__showLink)