Merge pull request #119 from carlallen/text_property_default_value_fix

Set default value for TextProperty to fix bug
This commit is contained in:
Manuel83
2017-09-05 08:03:24 +02:00
committed by GitHub
+1
View File
@@ -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):