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.
This commit is contained in:
Bastien Montagne 2014-02-22 14:53:44 +01:00
parent d5448fc90a
commit 8ec6e6018e
Notes: blender-bot 2023-02-14 20:10:57 +01:00
Referenced by issue #38342, Cell Fracture is in the wrong tab
1 changed files with 4 additions and 4 deletions

View File

@ -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__":