This commit is contained in:
2026-02-24 17:35:26 -08:00
parent 1c3c30e6ce
commit d45c632dcd
28 changed files with 1982 additions and 97 deletions

View File

@ -197,7 +197,10 @@ class CreateStyleNode(LnxLogicTreeNode):
properties += self.inputs[ind].name + ':'
ind += 1
self['property1'] = properties
try:
self['property1'] = properties
except AttributeError:
pass # Skip write if context doesn't allow it
return self.get('property0', 60)