We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6985c32 commit 86de7f2Copy full SHA for 86de7f2
not1mm/__main__.py
@@ -611,15 +611,15 @@ def __init__(self, splash):
611
logger.debug(f"{QT_VERSION_STR=} {PYQT_VERSION_STR=}")
612
x = PYQT_VERSION_STR.split(".")
613
old_Qt = True
614
- # test if pyqt version is at least 6.7.1
+ # test if pyqt version is at least 6.8
615
if len(x) == 1:
616
if int(x[0]) > 6:
617
old_Qt = False
618
elif len(x) >= 2:
619
if int(x[0]) >= 6 and int(x[1]) >= 8:
620
621
622
- # Featureset for wayland if pyqt is older that 6.7.1
+ # Featureset for wayland if pyqt is older that 6.8
623
dockfeatures = (
624
QtWidgets.QDockWidget.DockWidgetFeature.DockWidgetClosable
625
| QtWidgets.QDockWidget.DockWidgetFeature.DockWidgetMovable
0 commit comments