We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 331b83e + 7c6cabd commit c32e308Copy full SHA for c32e308
README.md
@@ -605,7 +605,7 @@ python -m twine upload .\dist\*
605
| `QFont().setWeight(...)` | `QtCompat.QFont.setWeight(font, ...)`
606
| `QFont().setWeight(QFont().Bold)` | `QFont().setWeight(QFont.Bold)` | Instance of class doesn't have the enums, apparently
607
| `QEvent().Resize` | `QEvent.Resize` | Instance of class doesn't have the enums, seems to apply overall
608
-| `QtCore.Qt.MidButton` | `QtCompat.QtCore.Qt.MidButton`
+| `QtCore.Qt.MidButton` | `QtCompat.Qt.MidButton`
609
| `QLabel.setPixmap(str)` | `QLabel.setPixmap(QPixmap())` | Can't take a string anymore (tested in Maya 2025.0)
610
| `QModelIndex.child` | `QModel.index` | This one is apparently from Qt 4 and should not have been in Qt.py to begin with
611
| | Submit your known issues here! |
0 commit comments