Skip to content
Snippets Groups Projects
Commit 8ec6e601 authored by Bastien Montagne's avatar Bastien Montagne
Browse files

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.
parent d5448fc9
No related branches found
No related tags found
No related merge requests found
......@@ -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__":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment