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:
authorDalai Felinto <dfelinto@gmail.com>2020-01-13 15:25:36 +0300
committerDalai Felinto <dfelinto@gmail.com>2020-01-13 15:25:36 +0300
commit29bbe142eae839c001334bae1844d9a2c6b0fa09 (patch)
tree2a9c0efd9f9967b058b953cd17db6f815444c234 /io_mesh_stl
parent7a31152eb0ebfb46280642ebac5957d6153ba5c9 (diff)
parent2d192b40050e63b198c3287d9a7ada5f3352c589 (diff)
Merge remote-tracking branch 'origin/blender-v2.81-release'
This was neglected during the 2.81 development cycle.
Diffstat (limited to 'io_mesh_stl')
-rw-r--r--io_mesh_stl/blender_utils.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/io_mesh_stl/blender_utils.py b/io_mesh_stl/blender_utils.py
index 8589e196..97621d11 100644
--- a/io_mesh_stl/blender_utils.py
+++ b/io_mesh_stl/blender_utils.py
@@ -80,7 +80,8 @@ def faces_from_mesh(ob, global_matrix, use_mesh_modifiers=False):
import bpy
# get the editmode data
- ob.update_from_editmode()
+ if ob.mode == "EDIT":
+ ob.update_from_editmode()
# get the modifiers
if use_mesh_modifiers:
@@ -94,6 +95,7 @@ def faces_from_mesh(ob, global_matrix, use_mesh_modifiers=False):
mesh = mesh_owner.to_mesh()
except RuntimeError:
return
+
if mesh is None:
return