Skip to content

Commit

Permalink
Merge pull request #419 from mgear-dev/master
Browse files Browse the repository at this point in the history
little fix QT 6 Transition documentation
  • Loading branch information
mottosso authored Sep 8, 2024
2 parents 331b83e + 7c6cabd commit c32e308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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! |
Expand Down

0 comments on commit c32e308

Please sign in to comment.