From 7c6cabd9c258df92b5a729a5e6e4a53315bd0ae4 Mon Sep 17 00:00:00 2001 From: miquelcampos Date: Sun, 8 Sep 2024 19:54:23 +0900 Subject: [PATCH] little fix QT 6 Transition documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bf236b7..d8381be 100644 --- a/README.md +++ b/README.md @@ -605,7 +605,7 @@ python -m twine upload .\dist\* | `QFont().setWeight(...)` | `QtCompat.QFont.setWeight(font, ...)` | `QFont().setWeight(QFont().Bold)` | `QFont().setWeight(QFont.Bold)` | Instance of class doesn't have the enums, apparently | `QEvent().Resize` | `QEvent.Resize` | Instance of class doesn't have the enums, seems to apply overall -| `QtCore.Qt.MidButton` | `QtCompat.QtCore.Qt.MidButton` +| `QtCore.Qt.MidButton` | `QtCompat.Qt.MidButton` | `QLabel.setPixmap(str)` | `QLabel.setPixmap(QPixmap())` | Can't take a string anymore (tested in Maya 2025.0) | `QModelIndex.child` | `QModel.index` | This one is apparently from Qt 4 and should not have been in Qt.py to begin with | | Submit your known issues here! |