Skip to content

Commit 86de7f2

Browse files
committed
update comment
1 parent 6985c32 commit 86de7f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

not1mm/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -611,15 +611,15 @@ def __init__(self, splash):
611611
logger.debug(f"{QT_VERSION_STR=} {PYQT_VERSION_STR=}")
612612
x = PYQT_VERSION_STR.split(".")
613613
old_Qt = True
614-
# test if pyqt version is at least 6.7.1
614+
# test if pyqt version is at least 6.8
615615
if len(x) == 1:
616616
if int(x[0]) > 6:
617617
old_Qt = False
618618
elif len(x) >= 2:
619619
if int(x[0]) >= 6 and int(x[1]) >= 8:
620620
old_Qt = False
621621

622-
# Featureset for wayland if pyqt is older that 6.7.1
622+
# Featureset for wayland if pyqt is older that 6.8
623623
dockfeatures = (
624624
QtWidgets.QDockWidget.DockWidgetFeature.DockWidgetClosable
625625
| QtWidgets.QDockWidget.DockWidgetFeature.DockWidgetMovable

0 commit comments

Comments
 (0)