Closed ccaillot closed 2 months ago
Fix PySide6 Integration
Pyblish PR related : https://github.com/pyblish/pyblish-lite/pull/134 Ynput PR related : https://github.com/ynput/ayon-core/pull/398
PySide6 signal emit differents data for dict data as you can read here : https://stackoverflow.com/questions/76579504/how-dose-pyside6-signal-emit-transfer-data-for-dictionary-data-why-the-behavio#comment135020453_76579504
Replace QtCore.Signal(dict) by QtCore.Signal(object). Does not impact other applications.
QtCore.Signal(dict)
QtCore.Signal(object)
Changelog Description
Fix PySide6 Integration
Pyblish PR related : https://github.com/pyblish/pyblish-lite/pull/134 Ynput PR related : https://github.com/ynput/ayon-core/pull/398
Issue
PySide6 signal emit differents data for dict data as you can read here : https://stackoverflow.com/questions/76579504/how-dose-pyside6-signal-emit-transfer-data-for-dictionary-data-why-the-behavio#comment135020453_76579504
Fix
Replace
QtCore.Signal(dict)
byQtCore.Signal(object)
. Does not impact other applications.