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:
-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 d1b14cf6..63f0c4f2 100644
--- a/io_mesh_stl/blender_utils.py
+++ b/io_mesh_stl/blender_utils.py
@@ -78,7 +78,8 @@ def faces_from_mesh(ob, global_matrix, use_mesh_modifiers=False):
"""
# get the editmode data
- ob.update_from_editmode()
+ if ob.mode == "EDIT":
+ ob.update_from_editmode()
# get the modifiers
if use_mesh_modifiers:
@@ -92,6 +93,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