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:
authorBrendon Murphy <meta.androcto1@gmail.com>2010-06-10 14:16:09 +0400
committerBrendon Murphy <meta.androcto1@gmail.com>2010-06-10 14:16:09 +0400
commit22ddedf82fc7134346cfa2c9f9f4157d48cf2f4e (patch)
tree183ce145ca064ea3f46c9933082e84978be9157f /space_view3d_property_chart.py
parent46523eca7ef668c80320a7094f666ab9f4a899a4 (diff)
addons/space_view3d_property_chart.py fixed menu registration.
Diffstat (limited to 'space_view3d_property_chart.py')
-rw-r--r--space_view3d_property_chart.py19
1 files changed, 12 insertions, 7 deletions
diff --git a/space_view3d_property_chart.py b/space_view3d_property_chart.py
index c02052e2..ad022bde 100644
--- a/space_view3d_property_chart.py
+++ b/space_view3d_property_chart.py
@@ -21,12 +21,17 @@
'''List properties of selected objects'''
bl_addon_info = {
- "name": "3D View: Object Property Chart",
- "author": "Campbell Barton (ideasman42)",
- "version": "0.1",
- "blender": (2, 5, 3),
- "location": "Tool Shelf",
- "description": "Edit arbitrary selected properties for objects of the same type"}
+ 'name': '3D View: Object Property Chart',
+ 'author': 'Campbell Barton (ideasman42)',
+ 'version': '0.1',
+ 'blender': (2, 5, 3),
+ 'location': 'Tool Shelf',
+ 'description': 'Edit arbitrary selected properties for objects of the same type',
+ 'wiki_url':
+ 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
+ 'Scripts/',
+ 'tracker_url': 'https://projects.blender.org/projects/bf-extensions/',
+ 'category': '3D View'}
import bpy
@@ -114,7 +119,7 @@ class View3DEditProps(bpy.types.Panel):
col.label(text="Display Properties")
col.prop(id_storage, '["%s"]' % self._PROP_STORAGE_ID, text="")
-
+
def register():
bpy.types.register(View3DEditProps)