masqu3rad3 / tik_manager4

Tik Manager is a Python-based Pipeline and Project Management platform designed for VFX and Animation Projects.
GNU General Public License v3.0
88 stars 4 forks source link

hotfix - pyside6 / pyqt6 compatibility fix #71

Closed masqu3rad3 closed 6 months ago

masqu3rad3 commented 6 months ago
test = QtWidgets.QDialogButtonBox()
# this is not working on pyside6 anymore
test.addButton("Apply", test .ApplyRole)

# it needs to be set like this:
test.addButton("Apply", QtWidgets.QDialogButtonBox.ApplyRole)