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-08-27 10:11:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-27 10:11:42 +0400
commitb0b787ef38f9947b3176642556f5282eb3518f69 (patch)
tree7ee75791c371e7f3939d69ac74515ac50fd21ddd /release/scripts/modules/rna_prop_ui.py
parent3912f5540863022fa7632b547fad867bd7d24411 (diff)
bugfix [#23534] Custom Properties not showing in OBJECT panel
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 91fc4e9092d..4ee0b40faa8 100644
--- a/release/scripts/modules/rna_prop_ui.py
+++ b/release/scripts/modules/rna_prop_ui.py
@@ -134,7 +134,7 @@ class PropertyPanel():
@classmethod
def poll(cls, context):
- bool(eval("context.%s" % cls._context_path))
+ return bool(eval("context.%s" % cls._context_path))
def draw(self, context):
draw(self.layout, context, self._context_path)