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-05-18 11:39:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-05-18 11:39:07 +0400
commit0a9d914ad72d68c391beafce3c9984fc4736bc19 (patch)
tree819456e7343b7de3bde6a06332871ddc86303427 /release/scripts/ui/properties_physics_common.py
parente3587f9e9fb245b168feb7d20ec367486201fd8f (diff)
context.PointCache --> context.point_cache (not to confuse type with property name)
Diffstat (limited to 'release/scripts/ui/properties_physics_common.py')
-rw-r--r--release/scripts/ui/properties_physics_common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/properties_physics_common.py b/release/scripts/ui/properties_physics_common.py
index a602a2a8ca6..350b17e6e9f 100644
--- a/release/scripts/ui/properties_physics_common.py
+++ b/release/scripts/ui/properties_physics_common.py
@@ -29,7 +29,7 @@ def point_cache_ui(self, context, cache, enabled, cachetype):
layout = self.layout
wide_ui = context.region.width > narrowui
- layout.set_context_pointer("PointCache", cache)
+ layout.set_context_pointer("point_cache", cache)
row = layout.row()
row.template_list(cache, "point_cache_list", cache, "active_point_cache_index", rows=2)