From 899af8bfa1954b0faf1a53029be2359bec814f5b Mon Sep 17 00:00:00 2001 From: mrillies Date: Tue, 5 Sep 2017 12:21:50 +1000 Subject: [PATCH] Update props.py Fix for "Text has no default property" in issue #118 --- modules/core/props.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/core/props.py b/modules/core/props.py index e3f4654..1de5325 100644 --- a/modules/core/props.py +++ b/modules/core/props.py @@ -22,6 +22,7 @@ class Property(object): PropertyType.__init__(self) self.label = label self.configurable = configurable + self.default_value = default_value self.description = description class Actor(PropertyType): @@ -64,4 +65,4 @@ class StepProperty(Property): PropertyType.__init__(self) self.label = label self.configurable = True - self.description = description \ No newline at end of file + self.description = description