File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -502,8 +502,12 @@ def _is2D(self) -> bool:
502502 isLinkNested = isLink
503503 hasOutputConnectionsChanged = Signal ()
504504 hasOutputConnections = Property (bool , hasOutputConnections .fget , notify = hasOutputConnectionsChanged )
505- linkedInAttributes = Property (Variant , getLinkedInAttributes )
506- linkedOutAttributes = Property (Variant , getLinkedOutAttributes )
505+
506+ linkedInAttributesChanged = Signal ()
507+ linkedInAttributes = Property (Variant , getLinkedInAttributes , notify = linkedInAttributesChanged )
508+ linkedOutAttributesChanged = Signal ()
509+ linkedOutAttributes = Property (Variant , getLinkedOutAttributes , notify = linkedOutAttributesChanged )
510+
507511 isDefault = Property (bool , _isDefault , notify = valueChanged )
508512 linkParam = Property (BaseObject , getLinkParam , notify = isLinkChanged )
509513 rootLinkParam = Property (BaseObject , lambda self : self .getLinkParam (recursive = True ), notify = isLinkChanged )
You can’t perform that action at this time.
0 commit comments