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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2010-09-11 03:40:32 +0400
committerThomas Dinges <blender@dingto.org>2010-09-11 03:40:32 +0400
commit46a2c6aa73b15b83f08356288e521647f2c3dbce (patch)
tree1b924a41c142443874cb658ffe5545b8f09ec22b /space_view3d_property_chart.py
parent135017985179ea98e618a4648ac5fee7f45026da (diff)
Patch [#23759] more replace self.properties.foo --> self.foo for bf-extensions/trunk/py/scripts
by Filiciss Muhgue (filiciss). Thanks a lot! Part 2: Extensions
Diffstat (limited to 'space_view3d_property_chart.py')
-rw-r--r--space_view3d_property_chart.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/space_view3d_property_chart.py b/space_view3d_property_chart.py
index 290b2941..557bdf80 100644
--- a/space_view3d_property_chart.py
+++ b/space_view3d_property_chart.py
@@ -23,7 +23,7 @@ bl_addon_info = {
"author": "Campbell Barton (ideasman42)",
"version": (0,1),
"blender": (2, 5, 3),
- "api": 31667,
+ "api": 31847,
"location": "Tool Shelf",
"description": "Edit arbitrary selected properties for objects of the same type",
"warning": "",
@@ -185,7 +185,7 @@ def _property_chart_copy(self, context):
if not obj:
return
- data_path = self.properties.data_path
+ data_path = self.data_path
# quick & nasty method!
for obj_iter in selected_objects:
@@ -211,8 +211,8 @@ class CopyPropertyChart(bpy.types.Operator):
def execute(self, context):
# so attributes are found for '_property_chart_data_get()'
- self.context_data_path_active = self.properties.data_path_active
- self.context_data_path_selected = self.properties.data_path_selected
+ self.context_data_path_active = self.data_path_active
+ self.context_data_path_selected = self.data_path_selected
_property_chart_copy(self, context)