Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-02-02 01:04:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-02 01:04:33 +0300
commit039d0871716e2134913b47ec4dbdcebaefb8edcc (patch)
tree93740bd824d6587f2e61fca1658ed594934964e5 /release/scripts/modules/rna_prop_ui.py
parent26cfe812f8b128bf1b2beaa6b94fb4c840456024 (diff)
subtype support for properties in bpy.props.
Diffstat (limited to 'release/scripts/modules/rna_prop_ui.py')
-rw-r--r--release/scripts/modules/rna_prop_ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/modules/rna_prop_ui.py b/release/scripts/modules/rna_prop_ui.py
index a9e50592059..47a516127cc 100644
--- a/release/scripts/modules/rna_prop_ui.py
+++ b/release/scripts/modules/rna_prop_ui.py
@@ -140,7 +140,7 @@ from bpy.props import *
rna_path = StringProperty(name="Property Edit",
- description="Property path edit", maxlen=1024, default="", hidden=True)
+ description="Property path edit", maxlen=1024, default="", options={'HIDDEN'})
rna_value = StringProperty(name="Property Value",
description="Property value edit", maxlen=1024, default="")