Kaynağa Gözat

Merge pull request #119 from carlallen/text_property_default_value_fix

Set default value for TextProperty to fix bug
tags/3.1_alpha
Manuel83 GitHub 8 yıl önce
ebeveyn
işleme
bf3fbddbe2
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  1. +2
    -1
      modules/core/props.py

+ 2
- 1
modules/core/props.py Dosyayı Görüntüle

@@ -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
self.description = description

Yükleniyor…
İptal
Kaydet