Fix T51749 - wrong active node when in group

This commit is contained in:
Greg Zaal 2017-06-10 17:50:59 +02:00
parent 3936cff81e
commit 46a690e72f
Notes: blender-bot 2023-02-14 19:38:44 +01:00
Referenced by issue #51749, Node Wrangler - Line Error
1 changed files with 3 additions and 3 deletions

View File

@ -19,8 +19,8 @@
bl_info = {
"name": "Node Wrangler",
"author": "Bartek Skorupa, Greg Zaal, Sebastian Koenig, Christian Brinkmann",
"version": (3, 33),
"blender": (2, 77, 0),
"version": (3, 34),
"blender": (2, 78, 0),
"location": "Node Editor Toolbar or Ctrl-Space",
"description": "Various tools to enhance and speed up node-based workflow",
"warning": "",
@ -3055,7 +3055,7 @@ class NWAddSequence(Operator, ImportHelper):
name_with_hashes = without_num + "#"*count_numbers + '.' + extension
bpy.ops.node.add_node('INVOKE_DEFAULT', use_transform=True, type=node_type)
node = context.space_data.node_tree.nodes.active
node = nodes.active
node.label = name_with_hashes
img = bpy.data.images.load(directory+(without_ext+'.'+extension))