Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Zaal <gregzzmail@gmail.com>2015-06-30 15:22:34 +0300
committerGreg Zaal <gregzzmail@gmail.com>2015-06-30 15:25:30 +0300
commit318e225c69f2a6c492b28ea7586e99c70a65b079 (patch)
tree3c041c6ffa5e1d351758b9de5971dad445efb0e5 /node_wrangler.py
parentf2e21eb478145ca0bbd2e69aaf43a7c7cd0bb1d6 (diff)
Node Wrangler: Fix: Lazy functions did not draw at all inside groups
Diffstat (limited to 'node_wrangler.py')
-rw-r--r--node_wrangler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/node_wrangler.py b/node_wrangler.py
index d7a0a2d0..3604e80b 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":