quadproduction / OpenPype

QuadProd version of OpenPype
MIT License
4 stars 0 forks source link

Fix PySide6 Integration #777

Closed ccaillot closed 2 months ago

ccaillot commented 2 months ago

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

image

Fix

Replace QtCore.Signal(dict) by QtCore.Signal(object). Does not impact other applications.

image