From ea0873dedaa1b81e706bad49ed7997cdf11d5ec1 Mon Sep 17 00:00:00 2001 From: meta-androcto Date: Tue, 16 Jul 2019 21:29:03 +1000 Subject: add_curve_sapling: Fix: T66252 D5154 --- add_curve_sapling/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- cgit v1.2.3