From ea0873dedaa1b81e706bad49ed7997cdf11d5ec1 Mon Sep 17 00:00:00 2001
From: meta-androcto <meta.androcto1@gmail.com>
Date: Tue, 16 Jul 2019 21:29:03 +1000
Subject: [PATCH] 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 458273ef6..4ec2cd839 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
-- 
GitLab