From 590ef4ca927a42e833cd61eec0bffcbf6f8afc34 Mon Sep 17 00:00:00 2001 From: Carl Allen Date: Mon, 4 Sep 2017 21:16:23 -0500 Subject: [PATCH] set default_value for Text Property --- 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