Merge pull request #2599 from alicevision/dev/qt6.6

Qt6.6.3 / PySide6.6.3.1 upgrade
This commit is contained in:
Fabien Castan 2024-11-22 12:39:09 +00:00 committed by GitHub
commit 66e3dd409d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
145 changed files with 2346 additions and 1702 deletions

View file

@ -116,8 +116,11 @@ class StatusData(BaseObject):
def toDict(self):
d = self.__dict__.copy()
d.pop('destroyed', None) # skip non data attributes from BaseObject
d["elapsedTimeStr"] = self.elapsedTimeStr
# Skip non data attributes from BaseObject
d.pop("destroyed", None)
d.pop("objectNameChanged", None)
return d
def fromDict(self, d):