[Bf-extensions-cvs] [318e225] master: Node Wrangler: Fix: Lazy functions did not draw at all inside groups

Greg Zaal noreply at git.blender.org
Tue Jun 30 14:28:18 CEST 2015


Commit: 318e225c69f2a6c492b28ea7586e99c70a65b079
Author: Greg Zaal
Date:   Tue Jun 30 14:22:34 2015 +0200
Branches: master
https://developer.blender.org/rBA318e225c69f2a6c492b28ea7586e99c70a65b079

Node Wrangler: Fix: Lazy functions did not draw at all inside groups

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

M	node_wrangler.py

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

diff --git a/node_wrangler.py b/node_wrangler.py
index d7a0a2d..3604e80 100644
--- a/node_wrangler.py
+++ b/node_wrangler.py
@@ -19,7 +19,7 @@
 bl_info = {
     "name": "Node Wrangler",
     "author": "Bartek Skorupa, Greg Zaal, Sebastian Koenig",
-    "version": (3, 28),
+    "version": (3, 29),
     "blender": (2, 75, 0),
     "location": "Node Editor Toolbar or Ctrl-Space",
     "description": "Various tools to enhance and speed up node-based workflow",
@@ -934,7 +934,7 @@ def draw_rounded_node_border(node, radius=8, colour=[1.0, 1.0, 1.0, 0.7]):
 
 def draw_callback_nodeoutline(self, context, mode):
     if self.mouse_path:
-        nodes = context.space_data.node_tree.nodes
+        nodes, links = get_nodes_links(context)
         bgl.glEnable(bgl.GL_LINE_SMOOTH)
 
         if mode == "LINK":



More information about the Bf-extensions-cvs mailing list