[Bf-extensions-cvs] [4741a42] master: Move NodeWrangler panel to its own tab in toolbar

Greg Zaal noreply at git.blender.org
Wed Jan 21 17:04:26 CET 2015


Commit: 4741a42e5d04c220ff782989a2ad87f1f1bffd65
Author: Greg Zaal
Date:   Wed Jan 21 18:03:45 2015 +0200
Branches: master
https://developer.blender.org/rBA4741a42e5d04c220ff782989a2ad87f1f1bffd65

Move NodeWrangler panel to its own tab in toolbar

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

M	node_wrangler.py

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

diff --git a/node_wrangler.py b/node_wrangler.py
index 06b7f74..0cf3c6c 100644
--- a/node_wrangler.py
+++ b/node_wrangler.py
@@ -19,9 +19,9 @@
 bl_info = {
     "name": "Node Wrangler",
     "author": "Bartek Skorupa, Greg Zaal, Sebastian Koenig",
-    "version": (3, 20),
+    "version": (3, 21),
     "blender": (2, 72, 0),
-    "location": "Node Editor Properties Panel or Ctrl-Space",
+    "location": "Node Editor Toolbar or Ctrl-Space",
     "description": "Various tools to enhance and speed up node-based workflow",
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
@@ -3168,8 +3168,9 @@ def drawlayout(context, layout, mode='non-panel'):
 class NodeWranglerPanel(Panel, NWBase):
     bl_idname = "NODE_PT_nw_node_wrangler"
     bl_space_type = 'NODE_EDITOR'
-    bl_region_type = 'UI'
     bl_label = "Node Wrangler"
+    bl_region_type = "TOOLS"
+    bl_category = "Node Wrangler"
 
     prepend = StringProperty(
         name='prepend',



More information about the Bf-extensions-cvs mailing list