[Bf-extensions-cvs] [7a58612] master: fix tracker url, move to Tools tab

Brendon Murphy noreply at git.blender.org
Fri Aug 21 06:15:23 CEST 2015


Commit: 7a586129c0d1add4db5e48ba65aa7341e5db6fc3
Author: Brendon Murphy
Date:   Fri Aug 21 14:14:55 2015 +1000
Branches: master
https://developer.blender.org/rBAC7a586129c0d1add4db5e48ba65aa7341e5db6fc3

fix tracker url, move to Tools tab

===================================================================

M	mesh_extra_tools/__init__.py

===================================================================

diff --git a/mesh_extra_tools/__init__.py b/mesh_extra_tools/__init__.py
index 350466b..b73ebcd 100644
--- a/mesh_extra_tools/__init__.py
+++ b/mesh_extra_tools/__init__.py
@@ -23,11 +23,11 @@ bl_info = {
     "author": "various",
     "version": (0, 1),
     "blender": (2, 71, 0),
-    "location": "View3D > Toolshelf > Addons Tab & Specials (W-key)",
+    "location": "View3D > Toolshelf > Tools Tab & Specials (W-key)",
     "description": "Add extra mesh edit tools",
     "warning": "",
     "wiki_url": "",
-    "tracker_url": "https://developer.blender.org/T32711",
+    "tracker_url": "https://developer.blender.org/maniphest/task/create/?project=3&type=Bug",
     "category": "Mesh"}
 
 
@@ -85,7 +85,7 @@ class ExtrasPanel(bpy.types.Panel):
     bl_space_type = 'VIEW_3D'
     bl_region_type = 'TOOLS'
     bl_context = 'mesh_edit'
-    bl_category = 'Addons'
+    bl_category = 'Tools'
     bl_options = {'DEFAULT_CLOSED'}
 
     def draw(self, context):
@@ -125,7 +125,7 @@ class ExtrudePanel(bpy.types.Panel):
     bl_label = 'Multi Extrude Plus'
     bl_space_type = 'VIEW_3D'
     bl_region_type = 'TOOLS'
-    bl_category = 'Addons'
+    bl_category = 'Tools'
     bl_options = {'DEFAULT_CLOSED'}
 
     def draw(self, context):



More information about the Bf-extensions-cvs mailing list