[Bf-extensions-cvs] [ea0873de] master: add_curve_sapling: Fix: T66252 D5154

meta-androcto noreply at git.blender.org
Tue Jul 16 13:29:17 CEST 2019


Commit: ea0873dedaa1b81e706bad49ed7997cdf11d5ec1
Author: meta-androcto
Date:   Tue Jul 16 21:29:03 2019 +1000
Branches: master
https://developer.blender.org/rBAea0873dedaa1b81e706bad49ed7997cdf11d5ec1

add_curve_sapling: Fix: T66252 D5154

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

M	add_curve_sapling/utils.py

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

diff --git a/add_curve_sapling/utils.py b/add_curve_sapling/utils.py
index 458273ef..4ec2cd83 100644
--- a/add_curve_sapling/utils.py
+++ b/add_curve_sapling/utils.py
@@ -755,7 +755,7 @@ def create_armature(armAnim, leafP, cu, frameRate, leafMesh, leafObj, leafVertSi
         armMod.use_vertex_groups = True
 
     # Make sure all objects are deselected (may not be required?)
-    for ob in bpy.data.objects:
+    for ob in bpy.context.view_layer.objects:
         ob.select_set(state=False)
 
     fps = bpy.context.scene.render.fps
@@ -1594,7 +1594,7 @@ def addTree(props):
     else:
         handles = 'VECTOR'
 
-    for ob in bpy.data.objects:
+    for ob in bpy.context.view_layer.objects:
         ob.select_set(state=False)
 
     # Initialise the tree object and curve and adjust the settings



More information about the Bf-extensions-cvs mailing list