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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-02-22 17:53:44 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-02-22 17:53:44 +0400
commit8ec6e6018e4352bf8da9fe756e4341c5845b0328 (patch)
tree6dfc9f630621f8fbf795f8c90489b62cc2d10b34 /object_fracture_cell
parentd5448fc90ab2e1432f493500ec26366741080251 (diff)
Fix T38342: Cell Fracture is in the wrong tab.
Names of those panels should probably be cleaned up, but for now just put Cell in "Edit" tools panel.
Diffstat (limited to 'object_fracture_cell')
-rw-r--r--object_fracture_cell/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/object_fracture_cell/__init__.py b/object_fracture_cell/__init__.py
index 4cb04977..abc8b7f3 100644
--- a/object_fracture_cell/__init__.py
+++ b/object_fracture_cell/__init__.py
@@ -20,8 +20,8 @@ bl_info = {
"name": "Cell Fracture",
"author": "ideasman42, phymec, Sergey Sharybin",
"version": (0, 1),
- "blender": (2, 64, 0),
- "location": "Search > Fracture Object & Add -> Fracture Helper Objects",
+ "blender": (2, 70, 0),
+ "location": "Edit panel of Tools tab, in Object mode, 3D View tools",
"description": "Fractured Object, Bomb, Projectile, Recorder",
"warning": "",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
@@ -553,12 +553,12 @@ def menu_func(self, context):
def register():
bpy.utils.register_class(FractureCell)
- bpy.types.VIEW3D_PT_tools_objectmode.append(menu_func)
+ bpy.types.VIEW3D_PT_tools_object.append(menu_func)
def unregister():
bpy.utils.unregister_class(FractureCell)
- bpy.types.VIEW3D_PT_tools_objectmode.remove(menu_func)
+ bpy.types.VIEW3D_PT_tools_object.remove(menu_func)
if __name__ == "__main__":