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:
authorCampbell Barton <ideasman42@gmail.com>2018-11-08 01:06:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-08 01:06:57 +0300
commit70df942d31aaaa3d25b7c5543f28529cc51170cc (patch)
tree74b2052407199ef2eba2632a0b9483ba20b59a13 /io_mesh_stl
parent5725f500a11c23707426d3b79376e74d8d802920 (diff)
Update for changes in Blender's API
Diffstat (limited to 'io_mesh_stl')
-rw-r--r--io_mesh_stl/blender_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_mesh_stl/blender_utils.py b/io_mesh_stl/blender_utils.py
index 1dfa76d8..fcc4889a 100644
--- a/io_mesh_stl/blender_utils.py
+++ b/io_mesh_stl/blender_utils.py
@@ -60,7 +60,7 @@ def create_and_link_mesh(name, faces, face_nors, points, global_matrix):
obj = bpy.data.objects.new(name, mesh)
bpy.context.collection.objects.link(obj)
bpy.context.view_layer.objects.active = obj
- obj.select_set("SELECT")
+ obj.select_set(True)
def faces_from_mesh(ob, global_matrix, use_mesh_modifiers=False):