eric7/eric7.py

branch
eric7
changeset 8631
b2c4c2f3fda7
parent 8622
149d51870ce8
child 8632
f25cd4b94eb0
diff -r 5464b9c31cf9 -r b2c4c2f3fda7 eric7/eric7.py
--- a/eric7/eric7.py	Fri Sep 24 16:34:46 2021 +0200
+++ b/eric7/eric7.py	Fri Sep 24 17:37:38 2021 +0200
@@ -42,12 +42,9 @@
         " it is installed and accessible.")
     sys.exit(100)
 
-# TODO: remove this workaround once rc0 issue is fixed
-# Workaround for a bug in Qt 6.2.0 rc0 on non-Linux
-if sys.platform.startswith("linux"):
-    with contextlib.suppress(ImportError):
-        from PyQt6 import QtWebEngineWidgets
-        # __IGNORE_WARNING__ __IGNORE_EXCEPTION__
+with contextlib.suppress(ImportError):
+    from PyQt6 import QtWebEngineWidgets
+    # __IGNORE_WARNING__ __IGNORE_EXCEPTION__
 
 # some global variables needed to start the application
 args = None

eric ide

mercurial